This repository has been archived by the owner on Jul 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.55 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
{
"type": "commonjs",
"name": "zephyri",
"version": "0.0.1",
"description": "use-case agnostic router",
"homepage": "https://github.com/brecert/zephyri#readme",
"license": "MIT",
"author": "Bree <11599528+Brecert@users.noreply.github.com> (https://brecert.github.io/)",
"repository": "github:brecert/zephyri",
"scripts": {
"docs": "typedoc src",
"test": "pnpm run build && jest --runInBand --coverage",
"build": "pika build && rimraf pkg/package.json && rimraf pkg/README.md",
"preversion": "pnpm test",
"deploy": "pnpm run docs && gh-pages -d docs",
"postpublish": "pnpm run deploy"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-typescript": "^7.7.4",
"@babel/register": "^7.7.4",
"@pika/cli": "^0.2.0",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.8.1",
"@pika/plugin-build-web": "^0.8.1",
"@pika/plugin-ts-standard-pkg": "^0.8.1",
"@types/jest": "^24.0.23",
"babel-jest": "^24.9.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"gh-pages": "^2.1.1",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"typedoc": "^0.15.3",
"typescript": "^3.7.2"
},
"engines": {
"node": ">=12",
"pnpm": ">=4"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg",
{
"tsconfig": "tsconfig.build.json"
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
]
]
},
"files": [
"pkg/*/**"
],
"source": "pkg/dist-src/index.js",
"types": "pkg/dist-types/index.d.ts",
"main": "pkg/dist-node/index.js",
"module": "pkg/dist-web/index.js"
}