This repository has been archived by the owner on Apr 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
68 lines (68 loc) · 1.66 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": "@pika/pack",
"description": "package building, reimagined.",
"version": "0.6.0",
"license": "MIT",
"homepage": "https://www.pikapkg.com/blog/introducing-pika-pack/",
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/pikapkg/pack.git"
},
"scripts": {
"format": "prettier --write src/**/*.ts",
"build": "node checkpoint/dist-node/index.bin.js",
"publish": "pika publish",
"test": "node pkg/dist-node/index.bin.js",
"version": "node pkg/dist-node/index.bin.js",
"update-checkpoint": "rm -rf checkpoint/ && cp -r pkg/ checkpoint/"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-simple-bin",
{
"bin": "pika-pack",
"minNodeVersion": 8
}
]
]
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^6.2.1",
"file-uri-to-path": "^2.0.0",
"glob": "^7.1.6",
"import-from": "^3.0.0",
"invariant": "^2.2.4",
"is-builtin-module": "^3.0.0",
"is-ci": "^2.0.0",
"kleur": "^4.1.3",
"loud-rejection": "^2.2.0",
"mkdirp": "^1.0.4",
"np": "^7.1.0",
"rimraf": "^3.0.2",
"strip-ansi": "^6.0.0",
"strip-bom": "^4.0.0",
"validate-npm-package-license": "^3.0.4",
"yargs-parser": "^20.2.4"
},
"devDependencies": {
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-simple-bin": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@types/yargs-parser": "^20.2.0",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
}
}