-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.44 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
{
"name": "solid-js-bundle",
"version": "0.1.1",
"description": "just a solid-js package bundle for no-compile environments",
"type": "module",
"main": "./dist/solid-js-bundle.js",
"types": "./dist/solid-js-bundle.d.ts",
"exports": {
".": {
"require": "./dist/solid-js-bundle.js",
"import": "./dist/solid-js-bundle.esm.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "rimraf dist && mkdir dist && tsc && browserify src/solid-js-bundle.js --standalone solidBundle --plugin=esmify | terser --compress --mangle --module --safari10 --source-map \"content='src/solid-js-bundle.js.map',filename='dist/solid-js-bundle.js.map'\" --output dist/solid-js-bundle.js && mv src/*.d.ts dist && rm src/*.js*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rozek/solid-js-bundle.git"
},
"keywords": [
"solidjs",
"fine-grained",
"declarative",
"reactive",
"web-framework"
],
"author": "Andreas Rozek <a.rozek@gmx.de> (https://www.rozek.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rozek/solid-js-bundle/issues"
},
"homepage": "https://github.com/rozek/solid-js-bundle#readme",
"devDependencies": {
"agadoo": "^2.0.0",
"browserify": "^17.0.0",
"esmify": "^2.1.1",
"rimraf": "^3.0.2",
"typescript": "^4.3.2"
},
"dependencies": {
"solid-js": "^1.6.10"
}
}