-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
61 lines (61 loc) · 1.76 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
{
"name": "app-icon-badge",
"license": "MIT",
"version": "0.1.2",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"assets",
"app.plugin.js",
"types.ts"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts && cp -r src/assets dist && tsup src/plugin/app.plugin.ts --format cjs && tsup cli/cli.ts",
"start": "nodemon --exec ts-node --files example/index.ts",
"start-cli": "nodemon --exec ts-node --files cli/cli.ts",
"type-check": "tsc --noEmit",
"prebuild-demo": "pnpm build && cd demo && pnpm i && pnpm run prebuild",
"format": "prettier --write \"**/*.{ts,md,json}\" --ignore-path .gitignore",
"np": "pnpm build && np --no-cleanup --no-release-draft --any-branch",
"test": "echo \"no test specified\"",
"prepare": "husky install"
},
"bin": {
"obytes-icon-cli": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/obytes/app-icon-badge.git"
},
"author": "Siham Ben Daia",
"bugs": {
"url": "https://github.com/obytes/app-icon-badge/issues"
},
"homepage": "https://github.com/obytes/app-icon-badge#readme",
"dependencies": {
"color-convert": "^2.0.1",
"commander": "^11.0.0",
"delta-e": "^0.0.8",
"jimp": "^0.22.7"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@expo/config-plugins": "^8.0.8",
"@types/node": "^22.7.8",
"ajv": "^8.12.0",
"chalk": "^4.1.2",
"husky": "^9.1.6",
"nodemon": "^3.1.7",
"np": "^10.0.7",
"prettier": "3.3.3",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"zod": "^3.21.4",
"zod-validation-error": "^1.3.1"
}
}