-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.9 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "value-enhancer",
"version": "5.5.1",
"private": false,
"description": "Enhance value with plain and explicit reactive wrapper. Think of it as hook-style signals.",
"license": "MIT",
"author": "CRIMX <[email protected]> (https://github.com/crimx/)",
"repository": {
"type": "git",
"url": "git+https://github.com/crimx/value-enhancer.git"
},
"keywords": [
"observable",
"react",
"reactive",
"model",
"frp",
"functional-reactive-programming",
"data flow"
],
"sideEffects": false,
"main": "./dist/index.js",
"unpkg": "./dist/index.umd.js",
"jsdelivr": "./dist/index.umd.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./collections": {
"types": "./dist/collections.d.ts",
"require": "./dist/collections.js",
"import": "./dist/collections.mjs"
}
},
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"collections": [
"dist/collections.d.ts"
]
}
},
"files": [
"src",
"dist"
],
"scripts": {
"prepublishOnly": "pnpm run build",
"lint": "eslint --ext .ts,.tsx . && prettier --check . && tsc --noEmit",
"size-limit": "size-limit",
"test": "node --expose-gc ./node_modules/jest/bin/jest.js --runInBand",
"test:coverage": "tsc --noEmit -p ./test/tsconfig.json && node --expose-gc ./node_modules/jest/bin/jest.js --collect-coverage",
"docs": "typedoc --options typedoc.json",
"types": "cross-env NODE_ENV=production tsc --declaration --emitDeclarationOnly --jsx react --esModuleInterop --outDir dist",
"build:index": "tsup --config tsup-config/index.tsup.config.ts",
"build:collections": "tsup --config tsup-config/collections.tsup.config.ts",
"build": "cross-env NODE_ENV=production pnpm run build:index && cross-env NODE_ENV=production pnpm run build:collections && node scripts/build-umd.mjs && node scripts/size.mjs",
"build:min": "cross-env NODE_ENV=production MINIFY=true pnpm run build:index && cross-env NODE_ENV=production MINIFY=true pnpm run build:collections && node scripts/build-umd.mjs && node scripts/size.mjs",
"release": "standard-version"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@rollup/plugin-replace": "^5.0.7",
"@size-limit/esbuild": "^11.1.4",
"@size-limit/file": "^11.1.4",
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"cross-env": "^7.0.3",
"eslint": "8.56.0",
"eslint-config-prettier": "8.10.0",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"pretty-bytes": "^6.1.0",
"rollup": "^3.20.2",
"size-limit": "^11.1.4",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.2",
"tsup": "^6.6.3",
"typedoc": "^0.25.13",
"typescript": "5.4.5",
"yoctocolors": "^1.0.0"
},
"packageManager": "[email protected]"
}