@lsby/ts-fp-data 0.0.9 → 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/package.json +16 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lsby/ts-fp-data",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
"require": "./dist/cjs/index.cjs",
|
|
@@ -9,37 +9,30 @@
|
|
|
9
9
|
"files": [
|
|
10
10
|
"dist"
|
|
11
11
|
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build:all": "npm run build:cjs && npm run build:esm",
|
|
14
|
+
"build:cjs": "tsup src/**/*.ts --format cjs --clean --dts -d dist/cjs",
|
|
15
|
+
"build:esm": "tsup src/**/*.ts --format esm --clean --dts -d dist/esm",
|
|
16
|
+
"check:all": "npm run check:format && npm run check:lint && npm run check:type",
|
|
17
|
+
"check:format": "prettier --write .",
|
|
18
|
+
"check:lint": "eslint . --fix",
|
|
19
|
+
"check:type": "tsc --noEmit",
|
|
20
|
+
"check:type:watch": "tsc --noEmit -w",
|
|
21
|
+
"pub:public": "npm run check:all && npm run test:base && npm run build:all && bumpp && npm publish --access public",
|
|
22
|
+
"test:base": "npm run check:all && vitest run",
|
|
23
|
+
"test:coverage": "npm run check:all && vitest run --coverage && open-cli ./coverage/index.html"
|
|
24
|
+
},
|
|
12
25
|
"devDependencies": {
|
|
13
26
|
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
|
|
27
|
+
"@lsby/eslint-config": "^0.0.2",
|
|
14
28
|
"@types/node": "^20.12.10",
|
|
15
|
-
"@typescript-eslint/eslint-plugin": "^7.8.0",
|
|
16
|
-
"@typescript-eslint/parser": "^7.8.0",
|
|
17
29
|
"@vitest/coverage-v8": "^2.0.2",
|
|
18
30
|
"bumpp": "^9.4.1",
|
|
19
|
-
"eslint": "^8.56.0",
|
|
20
|
-
"eslint-config-prettier": "^9.1.0",
|
|
21
|
-
"eslint-plugin-sort-class-members": "^1.20.0",
|
|
22
|
-
"eslint-plugin-unused-imports": "^3.2.0",
|
|
23
31
|
"open-cli": "^8.0.0",
|
|
24
32
|
"prettier": "3.2.5",
|
|
25
33
|
"prettier-plugin-packagejson": "^2.5.0",
|
|
26
34
|
"tsup": "^8.0.2",
|
|
27
|
-
"tsx": "^4.9.3",
|
|
28
35
|
"typescript": "^5.4.5",
|
|
29
36
|
"vitest": "^2.0.2"
|
|
30
|
-
},
|
|
31
|
-
"scripts": {
|
|
32
|
-
"build:all": "npm run build:cjs && npm run build:esm",
|
|
33
|
-
"build:cjs": "tsup src/**/*.ts --format cjs --clean --dts -d dist/cjs",
|
|
34
|
-
"build:esm": "tsup src/**/*.ts --format esm --clean --dts -d dist/esm",
|
|
35
|
-
"other:clean": "rm -rf .parcel-cache dist",
|
|
36
|
-
"other:format": "prettier --write .",
|
|
37
|
-
"other:lint": "eslint . --fix",
|
|
38
|
-
"other:pub": "npm run other:typecheck && npm run build:all && bumpp && pnpm -r publish --access public",
|
|
39
|
-
"other:typecheck": "tsc --noEmit",
|
|
40
|
-
"other:typecheck:watch": "tsc --noEmit -w",
|
|
41
|
-
"run:start": "tsx src/index.ts",
|
|
42
|
-
"test:base": "vitest run",
|
|
43
|
-
"test:coverage": "vitest run --coverage && open-cli ./coverage/index.html"
|
|
44
37
|
}
|
|
45
|
-
}
|
|
38
|
+
}
|