-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.03 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
{
"name": "preact-nominal-allocator",
"version": "0.0.2",
"description": "",
"main": "./src/NominalAllocator.js",
"type": "module",
"scripts": {
"build": "esbuild ./src/NominalAllocator.js --bundle --format=esm --outfile=www/js/out.js",
"watch": "esbuild ./src/NominalAllocator.js --sourcemap --bundle --format=esm --outfile=www/js/out.js --watch",
"serve": "esbuild --serve --servedir=www",
"dev": "concurrently \"npm run serve\" \"npm run watch\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/TimDaub/preact-nominal-allocator.git"
},
"author": "Tim Daubenschuetz <tim@daubenschuetz.de>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/TimDaub/preact-nominal-allocator/issues"
},
"homepage": "https://github.com/TimDaub/preact-nominal-allocator#readme",
"dependencies": {
"htm": "3.1.0",
"preact": "10.6.4",
"jss": "10.9.0",
"jss-preset-default": "10.9.0"
},
"devDependencies": {
"concurrently": "6.5.1",
"esbuild": "0.14.10"
}
}