-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 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
{
"name": "dao3-areact",
"version": "0.0.3-alpha",
"description": "React-like UI programming in Dao3.fun(Arena)",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./components": {
"types": "./dist/components.d.ts",
"import": "./dist/esm/components.js",
"require": "./dist/cjs/components.js"
},
"./*": [
"./*",
"./*.d.ts"
]
},
"typesVersions": {
"*": {
"*": [
"./*",
"./dist/*"
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/Box3TRC/Areact"
},
"license": "MIT",
"devDependencies": {
"@types/color": "^3.0.6",
"color": "^4.2.3",
"css-select": "^5.1.0",
"cssom": "^0.5.0",
"esbuild": "^0.23.1",
"esbuild-plugin-d.ts": "^1.3.0",
"htm": "^3.1.1",
"html-escaper": "^3.0.3",
"htmlparser2": "^9.1.0",
"typescript": "^5.6.2",
"uhyphen": "^0.2.0"
},
"dependencies": {
"preact": "^10.24.0"
},
"scripts": {
"test": "esbuild test.tsx --bundle --minify --legal-comments=none --outfile=testout.js",
"esbuild:build": "node ./esbuild.mjs",
"build": "npm run esbuild:build",
"prepublishOnly": "npm run build",
"pub-gh":"npm publish @Box3TRC/areact --registry=https://npm.pkg.github.com/ --scope=@Box3TRC"
},"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}