-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (71 loc) · 2.67 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
{
"name": "fiddlehead",
"version": "1.7.9",
"description": "A lightweight library to build user interfaces with JSX and hooks.",
"keywords": [
"vdom",
"vdom library",
"virtual dom",
"reconciliation",
"vnode",
"virtual node",
"jsx",
"hooks",
"browser render"
],
"main": "index.js",
"exports": {
".": {
"types": "./lib/core/index.d.ts",
"module": "./lib/core/index.mjs",
"import": "./lib/core/index.mjs",
"default": "./lib/core/index.js"
},
"./store": {
"types": "./lib/store/index.d.ts",
"module": "./lib/store/index.mjs",
"import": "./lib/store/index.mjs",
"default": "./lib/store/index.js"
},
"./lib/*": "./lib/*"
},
"scripts": {
"output:install": "cd output && npm install",
"output:build": "cd output && npm run build",
"output:watch": "cd output && npm run watch",
"playground:install": "cd playground && npm install",
"playground:start": "cd playground && npm run start",
"playground:build": "cd playground && cross-env NODE_ENV=production npm run build",
"playground:watch": "cd playground && cross-env NODE_ENV=production npm run watch",
"playground:build:dev": "cd playground && cross-env NODE_ENV=development npm run build",
"playground:watch:dev": "cd playground && cross-env NODE_ENV=development npm run watch",
"bench:install": "cd bench && npm install",
"bench:start": "cd bench && npm run start",
"bench:build": "cd bench && cross-env NODE_ENV=production npm run build",
"bench:watch": "cd bench && cross-env NODE_ENV=production npm run watch",
"bench:build:dev": "cd bench && cross-env NODE_ENV=development npm run build",
"bench:watch:dev": "cd bench && cross-env NODE_ENV=development npm run watch",
"tests:install": "cd tests && npm install",
"lint": "eslint ./packages --config .eslintrc",
"dev:install": "npm run output:install && npm run playground:install && npm run bench:install && npm run tests:install",
"dev": "concurrently \"npm run output:watch\" \"npm run playground:watch:dev\" \"npm run playground:start\" \"npm run bench:watch\" \"npm run bench:start\"",
"test": "cd tests && npm run test",
"prepublishOnly": "npm run output:build && npm test"
},
"repository": {
"type": "git",
"url": "git@github.com:fiddleheadjs/fiddlehead.git"
},
"homepage": "https://fiddleheadjs.com",
"author": "quyettvq@gmail.com",
"license": "MIT",
"devDependencies": {
"chalk": "^5.0.1",
"concurrently": "^7.2.1",
"core.pkg": "file:lib/core",
"cross-env": "^7.0.3",
"eslint": "^8.15.0",
"fiddlehead": "file:lib/core",
"store.pkg": "file:lib/store"
}
}