-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.08 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
{
"name": "sin",
"version": "1.0.0-rc.1",
"description": "sin",
"type": "module",
"main": "src/index.js",
"scripts": {
"postinstall": "node shared/server/uws.js",
"start": "sin start",
"test": "sin test --headless --ci",
"lint": "eslint . --ignore-pattern dist.js",
"build": "npm run build:eyedropper && npm run build:dev",
"build:min": "esbuild src/index.js --minify --format=esm --bundle --outfile=sin.min.js",
"build:bundle": "esbuild src/index.js --format=esm --bundle --outfile=sin.js",
"build:gzip": "gzip -c sin.min.js > sin.min.js.gz && ls -l sin.min.js.gz && rm sin.min.js.gz",
"build:dev": "esbuild bin/develop/tools/index.js --external:fsevents --external:/node_modules/sin/* --alias:SIN=./src/index.js --minify --format=esm --bundle --outfile=bin/develop/tools/dist.js",
"build:eyedropper": "pushd bin/develop/tools/eyedropper && node-gyp configure && node-gyp build && cp build/Release/eyedropper.node eyedropper.node && node-gyp clean;popd"
},
"exports": {
".": "./src/index.js",
"./bin/color": "./bin/color.js",
"./env": "./bin/env.js",
"./build": "./shared/build/index.js",
"./server": "./shared/server/index.js",
"./server/window": "./ssr/window.js",
"./test": "./bin/test/test.js",
"./mimes": "./shared/server/mimes.js"
},
"imports": {
"#server": "./shared/server/index.js"
},
"bin": {
"sin": "./bin/index.js"
},
"files": [
"/bin",
"/build",
"/shared",
"/src",
"/ssr",
"/sin.js",
"/sin.min.js",
"/sin.svg"
],
"author": "Rasmus Porsager <rasmus@porsager.com> (https://www.porsager.com)",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/porsager"
},
"repository": "porsager/sin",
"homepage": "https://github.com/porsager/sin",
"bugs": "https://github.com/porsager/sin/issues",
"keywords": [
"view",
"framework",
"sin.js",
"sin",
"simple",
"css",
"html",
"javascript",
"not-react",
"not-vue"
],
"dependencies": {
"esbuild": "0.23.0"
},
"engines": {
"node": ">=20.11"
}
}