-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1003 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1003 Bytes
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
{
"name": "@w-lfpup/react-superaction",
"type": "module",
"main": "dist/mod.js",
"description": "Turn the virtual-dom into a declarative event-bus",
"license": "BSD-3-Clause",
"version": "0.1.0",
"scripts": {
"prepare": "npm run build",
"build": "npm run build:core && npm run build:examples",
"build:core": "npx tsc --project src/",
"build:examples": "npx tsc --project examples/",
"bundle": "rollup --config rollup.config.js",
"format": "npx prettier ./ --write"
},
"dependencies": {
"@w-lfpup/superaction": "github:w-lfpup/superaction-js"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"prettier": "^3.8.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"rollup": "^4.60.4",
"typescript": "^6.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w-lfpup/react-superaction.git"
}
}