-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.56 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
{
"name": "@arborjs/store",
"sideEffects": false,
"version": "0.0.1-alpha.93",
"description": "A fully typed, minimalistic proxy-based state tree library with very little boilerplate.",
"keywords": [
"arbor",
"react",
"state",
"store",
"typescript",
"tree"
],
"repository": {
"url": "https://github.com/drborges/arbor",
"type": "git"
},
"bugs": {
"url": "https://github.com/drborges/arbor/issues",
"email": "[email protected]"
},
"author": {
"email": "[email protected]",
"name": "Diego Borges",
"url": "https://github.com/drborges"
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.esm.js",
"default": "./dist/index.esm.js"
}
},
"license": "MIT",
"prettier": "@arborjs/config-prettier",
"files": [
"./dist",
"./README",
"../../LICENSE"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"esbuild": "^0.17.19",
"eslint": "^8.40.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4",
"vitest": "^1.6.1"
},
"scripts": {
"prettier": "prettier -w . ",
"clean": "rm -rf dist",
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
"test": "vitest run",
"dev": "vitest -w",
"build": "yarn clean && NODE_ENV=production node ../../tools/build.js && yarn tsc",
"build:dev": "yarn clean && NODE_ENV=development node ../../tools/build.js && yarn tsc"
}
}