-
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) · 885 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 885 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": "@flash.js/core",
"version": "0.0.3",
"description": "Flash is a JavaScript signals library for state management.",
"author": "Samuel Holmes",
"type": "module",
"main": "./lib/cjs/flash.js",
"module": "./lib/flash.js",
"types": "./src/flash.d.ts",
"files": [
"/CHANGELOG.md",
"/lib/*",
"/package.json",
"/README.md",
"/src/*"
],
"scripts": {
"clean": "rimraf build",
"lib": "rollup -c",
"prepare": "bun run clean && bun run lib && bun run types",
"types": "tsc"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@rollup/plugin-babel": "^6.0.4",
"bun-types": "^1.0.14",
"rimraf": "^5.0.5",
"rollup": "^4.1.4",
"rollup-plugin-filesize": "^10.0.0",
"typescript": "^5.3.2"
},
"dependencies": {},
"repository": "https://github.com/flash-js/core"
}