-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.39 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.39 KB
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
{
"name": "ple",
"description": "Streamlined plist editor",
"version": "0.2.0",
"author": "Yasuaki Uechi <y@uechi.io> (https://uechi.io)",
"scripts": {
"build": "run-s clean 'build:ts -- --minify --dts'",
"build:ts": "tsup src/cli.ts src/index.ts -d dist",
"clean": "shx rm -rf dist",
"dev": "npm run build:ts -- --watch",
"prepublishOnly": "npm run build",
"release": "release-it",
"test": "npm run build:ts && jest"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/cli.js",
"files": [
"dist"
],
"dependencies": {
"cac": "^6.7.12",
"deepmerge": "^4.2.2",
"epicfail": "^3.0.0",
"simple-plist": "^1.3.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^4.2.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/plist": "^3.0.2",
"execa": "^5.1.1",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"release-it": "^14.12.5",
"shx": "^0.3.4",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"tsup": "^5.12.0",
"typescript": "^4.6.2"
},
"homepage": "https://github.com/uetchy/ple",
"repository": {
"type": "git",
"url": "https://github.com/uetchy/ple.git"
},
"bugs": {
"url": "https://github.com/uetchy/ple/issues"
},
"license": "Apache-2.0",
"keywords": [
"bplist",
"cli",
"editor",
"plist",
"property-list"
]
}