-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "@fune/fune",
"version": "1.1.0",
"description": "Build scalable web pages with declarative functions.",
"scripts": {
"test": "tsx ./test/index.ts",
"build": "tsup",
"watch": "tsup --watch",
"ibp": "pnpm install && pnpm build && pnpm publish --registry=https://registry.npmjs.org --access public"
},
"keywords": [],
"author": "intza",
"license": "ISC",
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e",
"devDependencies": {
"@types/node": "^20.14.11",
"tsup": "^8.2.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@deepsignal/core": "^4.0.0",
"@preact/signals-core": "^1.7.0",
"@types/jsdom": "^21.1.7",
"@types/ramda": "^0.30.1",
"csstype": "^3.1.3",
"jsdom": "^25.0.1",
"minimatch": "^10.0.1",
"ramda": "^0.30.1"
},
"exports": {
".": {
"import": "./dist/export.js"
},
"./dev": {
"import": "./src/export.ts"
}
},
"files": [
"dist",
"src"
],
"type": "module"
}