forked from justin-schroeder/arrow-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.72 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
{
"name": "@arrow-js/core",
"private": true,
"version": "1.0.0-alpha.9",
"description": "Reactivity without the framework.",
"author": "Justin Schroeder <[email protected]>",
"license": "MIT",
"main": "dist/index.min.mjs",
"module": "dist/index.min.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"directories": {
"doc": "docs",
"test": "test"
},
"type": "module",
"devDependencies": {
"@rollup/plugin-typescript": "^11.0.0",
"@size-limit/preset-small-lib": "^8.2.4",
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "^4.9.5",
"@typescript-eslint/parser": "^4.9.5",
"chalk": "^5.2.0",
"eslint": "^7.19.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"execa": "^7.1.1",
"jsdom": "^21.1.1",
"prettier": "^2.3.0",
"rollup": "^3.19.1",
"rollup-plugin-dts": "^5.2.0",
"shx": "^0.3.4",
"size-limit": "^8.2.4",
"terser": "^5.5.1",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.29.7"
},
"engines": {
"node": ">=14.0.0"
},
"size-limit": [
{
"path": "dist/index.mjs",
"limit": "3 KB",
"gzip": true
}
],
"scripts": {
"dev": "cd docs && vite --config=vite.config.ts",
"build:docs": "cd docs && vite build --config=vite.config.ts",
"build": "npx ts-node ./build/pack.ts && pnpm minify && pnpm size",
"test": "vitest",
"size": "size-limit",
"minify": "node build/terser.js"
}
}