-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.07 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
{
"name": "@virtualstate/impack",
"version": "1.0.0-alpha.15",
"main": "./esnext/index.js",
"module": "./esnext/index.js",
"bin": {
"impack": "./esnext/cli.js"
},
"imports": {
"#impack": "./esnext/impack/index.js",
"#*": "./esnext/*/index.js"
},
"types": "./esnext/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./esnext/index.d.ts"
],
"tests": [
"./esnext/tests/index.d.ts"
],
"routes": [
"./esnext/routes/index.d.ts"
]
}
},
"type": "module",
"sideEffects": false,
"keywords": [],
"exports": {
".": "./esnext/index.js",
"./tests": "./esnext/tests/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/virtualstate/impack.git"
},
"bugs": {
"url": "https://github.com/virtualstate/impack/issues"
},
"homepage": "https://github.com/virtualstate/impack#readme",
"author": "Fabian Cook <hello@fabiancook.dev>",
"license": "MIT",
"dependencies": {
"filehound": "^1.17.4"
},
"devDependencies": {
"@types/bluebird": "^3.5.37",
"@types/node": "^17.0.1",
"@virtualstate/promise": "^1.2.1",
"@virtualstate/union": "^2.48.1",
"@virtualstate/listen": "^1.0.0-alpha.14",
"typescript": "^4.4.3"
},
"scripts": {
"test:all": "yarn test:node",
"build": "rm -rf esnext && tsc",
"postbuild": "mkdir -p coverage && node scripts/post-build.js",
"prepublishOnly": "npm run build",
"test": "yarn build && yarn test:all",
"test:node": "export $(cat .env | xargs) && node --enable-source-maps esnext/tests/index.js",
"coverage": "export $(cat .env | xargs) && c8 node esnext/tests/index.js && yarn postbuild",
"test:workerd:compile": "workerd compile workerd-tests.capnp > workerd-tests",
"test:workerd": "yarn test:workerd:compile && ./workerd-tests --experimental",
"impack": "yarn build && ./esnext/cli.js",
"impack:test": "yarn build && ./esnext/cli.js ./esnext/tests/impack/example-jsx/index.js --capnp=./src/tests/impack/workerd-tests.template.capnp --listen-jsx > ./workerd-tests.capnp"
}
}