@subf/config 0.0.0 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +21 -9
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@subf/config",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Universal configuration for TypeScript, SolidJS, oxlint, oxfmt",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Universal configuration for TypeScript, SolidJS, oxlint, oxfmt, and tsdown.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"config",
|
|
7
|
+
"configuration",
|
|
8
|
+
"eslint",
|
|
9
|
+
"oxfmt",
|
|
10
|
+
"oxlint",
|
|
11
|
+
"prettier",
|
|
12
|
+
"shared config",
|
|
13
|
+
"solidjs",
|
|
14
|
+
"tsdown",
|
|
15
|
+
"typescript",
|
|
16
|
+
"universal config"
|
|
17
|
+
],
|
|
5
18
|
"homepage": "https://github.com/subframe7536/config#readme",
|
|
6
19
|
"bugs": {
|
|
7
20
|
"url": "https://github.com/subframe7536/config/issues"
|
|
@@ -21,9 +34,6 @@
|
|
|
21
34
|
"bin"
|
|
22
35
|
],
|
|
23
36
|
"type": "module",
|
|
24
|
-
"publishConfig": {
|
|
25
|
-
"access": "public"
|
|
26
|
-
},
|
|
27
37
|
"exports": {
|
|
28
38
|
"./oxfmt": "./dist/oxfmt.js",
|
|
29
39
|
"./oxlint": "./dist/oxlint.js",
|
|
@@ -34,14 +44,16 @@
|
|
|
34
44
|
"./tsconfig-web": "./tsconfig.web.json",
|
|
35
45
|
"./tsconfig-lib": "./tsconfig.lib.json"
|
|
36
46
|
},
|
|
47
|
+
"publishConfig": {
|
|
48
|
+
"access": "public"
|
|
49
|
+
},
|
|
37
50
|
"scripts": {
|
|
38
51
|
"build": "tsdown",
|
|
39
52
|
"dev": "tsdown --watch",
|
|
40
53
|
"typecheck": "tsc --noEmit",
|
|
41
|
-
"release": "
|
|
42
|
-
"qa": "oxlint --fix && oxfmt",
|
|
43
|
-
"prepublishOnly": "bun run build"
|
|
44
|
-
"test": "node --test"
|
|
54
|
+
"release": "bumpp --all",
|
|
55
|
+
"qa": "bun run typecheck && oxlint --fix && oxfmt",
|
|
56
|
+
"prepublishOnly": "bun run build"
|
|
45
57
|
},
|
|
46
58
|
"dependencies": {
|
|
47
59
|
"@subf/oxlint-plugin": "^0.1.0"
|