-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.21 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
{
"name": "kr-observable",
"version": "1.0.24.beta.2",
"description": "A proxy-based observable with a hoc for react/preact",
"type": "module",
"scripts": {
"build": "rm -rf ./dist && tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json && node --import tsx ./scripts/genPackageFiles.ts",
"test": "npm run build && node --test --test-reporter=spec ./test/import*.*js && c8 node --import tsx --test --test-reporter=spec ./test/*.test.*",
"analyze:js": "eslint ./src",
"format:js": "eslint --fix ./src"
},
"keywords": [
"proxy",
"observer",
"observable"
],
"author": "Roman Konstantin",
"license": "MIT",
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@types/node": "22.8.6",
"@types/react": "^18.3.11",
"@espcom/eslint-config": "0.0.8",
"tsx": "^4.19.2",
"typescript": "^4.9.5",
"c8": "10.1.2"
},
"sideEffect": false,
"exports": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"main": "dist/cjs/index.js",
"types": "dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/nihil-pro/observable-class.git"
}
}