@gershy/clearing 0.0.9 → 0.0.10
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/package.json +11 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gershy/clearing",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"description": "Adds the features you always wish javascript had!",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"clearing",
|
|
@@ -17,31 +17,29 @@
|
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://github.com/gershy/clearing#readme",
|
|
19
19
|
"license": "ISC",
|
|
20
|
-
"types": "./cmp/types/global.d.ts",
|
|
21
|
-
"exports": {
|
|
22
|
-
".": {
|
|
23
|
-
"import": "./cmp/mjs/main.js",
|
|
24
|
-
"require": "./cmp/cjs/main.js",
|
|
25
|
-
"types": "./cmp/types/global.d.ts"
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
20
|
"devDependencies": {
|
|
29
21
|
"@types/node": "^24.10.1",
|
|
30
|
-
"cpx": "^1.5.0",
|
|
31
|
-
"rimraf": "^6.1.2",
|
|
32
22
|
"tsx": "^4.21.0",
|
|
33
23
|
"typescript": "^5.9.3"
|
|
34
24
|
},
|
|
35
25
|
"files": [
|
|
36
26
|
"cmp"
|
|
37
27
|
],
|
|
28
|
+
"exports": {
|
|
29
|
+
".": {
|
|
30
|
+
"import": "./cmp/mjs/main.js",
|
|
31
|
+
"require": "./cmp/cjs/main.js",
|
|
32
|
+
"types": "./cmp/types/global.d.ts"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"types": "./cmp/types/global.d.ts",
|
|
38
36
|
"scripts": {
|
|
39
37
|
"test": "npx tsx ./src/main.test.mts",
|
|
40
38
|
"ts.check": "npx tsc --noEmit",
|
|
41
39
|
"build.cjs": "tsc -p ts/tsconfig.cjs.json",
|
|
42
40
|
"build.mjs": "tsc -p ts/tsconfig.mjs.json",
|
|
43
|
-
"build.types": "
|
|
44
|
-
"build": "
|
|
41
|
+
"build.types": "node build.js copyGlobalTypes",
|
|
42
|
+
"build": "node build.js removeCmp && npm run build.cjs && npm run build.mjs && npm run build.types",
|
|
45
43
|
"git.pub": "npm run test && git add --all && git commit -m \"automated\" && git push",
|
|
46
44
|
"npm.login": "npm login",
|
|
47
45
|
"npm.pub": "npm run test && npm run build && npm publish --access public"
|