-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.44 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
{
"name": "@furiouzz/reactive",
"description": "",
"version": "2.0.0-beta.0",
"author": "Christophe MASSOLIN <[email protected]> (https://chrsmsln.com)",
"devDependencies": {
"@furiouzz/lol": "^0.0.36",
"@microsoft/api-extractor": "^7.35.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"esbuild": "^0.17.19",
"eslint": "^8.37.0",
"eslint-config-prettier": "8.8.0",
"prettier": "^2.8.7",
"semver": "^7.5.1",
"typescript": "^5.0.4",
"vitest": "^0.34.6"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
},
"./store": {
"types": "./dist/store.d.ts",
"import": "./dist/esm/store.js",
"require": "./dist/cjs/store.cjs"
},
"./atom": {
"types": "./dist/atom.d.ts",
"import": "./dist/esm/atom.js",
"require": "./dist/cjs/atom.cjs"
}
},
"files": [
"dist",
"README.md"
],
"keywords": [
"observer",
"reactive",
"reactivity",
"signal"
],
"license": "Apache Licence 2.0",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"scripts": {
"build": "node scripts/build",
"bump": "node scripts/bump",
"lint": "eslint ./lib",
"format": "prettier --ignore-path \"./eslintignore\" --write ./lib",
"test": "vitest"
},
"type": "module",
"types": "./dist/index.d.ts"
}