-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.58 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.58 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "react-native-svg-app-icon",
"version": "0.6.1",
"description": "App icon generator for React Native projects",
"keywords": [
"react-native",
"svg",
"app-icon"
],
"homepage": "https://github.com/aeirola/react-native-svg-app-icon",
"bugs": {
"url": "https://github.com/aeirola/react-native-svg-app-icon/issues"
},
"files": [
"assets/",
"lib/"
],
"bin": {
"react-native-svg-app-icon": "lib/cli/index.js"
},
"main": "lib/index.js",
"type": "commonjs",
"scripts": {
"prepare": "tsc --project tsconfig.build.json",
"test": "concurrently 'npm:test:*'",
"test:lint:style": "biome check",
"test:lint:types": "tsc",
"test:unit": "vitest run src/",
"test:integration": "npm run prepare && vitest run test/integration/"
},
"author": "Axel Havukangas <axel@havukangas.fi>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aeirola/react-native-svg-app-icon.git"
},
"dependencies": {
"arktype": ">=2.0.0",
"commander": ">=8.3.0",
"fs-extra": ">=3.0.0",
"sharp": ">=0.26.0",
"svg2vectordrawable": "2.9.1",
"svgo": "^2.8.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@tsconfig/node20": "^20.1.8",
"@tsconfig/strictest": "^2.0.8",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.14.8",
"@types/svgo": "^2.6.4",
"concurrently": "^9.2.1",
"pixelmatch": "^7.1.0",
"typescript": "^5.9.3",
"vitest": "^4.0.9"
},
"engines": {
"node": ">=20.0.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=20.12"
},
"packageManager": {
"name": "npm",
"version": ">=9"
}
}
}