-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.68 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
69
70
71
72
73
74
{
"name": "@swmansion/icons",
"version": "0.0.1",
"description": "Software Mansion Icon Pack",
"type": "module",
"main": "./react-icon-pack/dist",
"module": "./react-icon-pack/dist",
"react-native": "./react-native-icon-pack/src/index.ts",
"types": "./types/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/software-mansion-labs/swm-icon-pack-react.git"
},
"bugs": {
"url": "https://github.com/software-mansion-labs/swm-icon-pack-react/issues"
},
"files": [
"react-native-icon-pack/src/",
"react-icon-pack/dist/index.d.mts",
"react-icon-pack/dist/index.d.ts",
"react-icon-pack/dist/index.js",
"react-icon-pack/dist/index.mjs",
"fonts/",
"types/"
],
"scripts": {
"lint": "eslint \"*.{js,ts,tsx}\" && tsc --noEmit",
"lint:all": "yarn lint && yarn lint:native && yarn lint:web && yarn lint:example && yarn lint:exampleNative",
"lint:native": "cd react-native-icon-pack && yarn lint",
"lint:web": "cd react-icon-pack && yarn lint",
"lint:example": "cd example && yarn lint",
"lint:exampleNative": "cd exampleNative && yarn lint",
"format": "prettier . --check",
"format:all": "yarn format && yarn format:native && yarn format:web && yarn format:example && yarn format:exampleNative",
"format:native": "cd react-native-icon-pack && yarn format",
"format:web": "cd react-icon-pack && yarn format",
"format:example": "cd example && yarn format",
"format:exampleNative": "cd exampleNative && yarn format:fix",
"format:fix": "prettier . --write",
"format:native:fix": "cd react-native-icon-pack && yarn format:fix",
"format:web:fix": "cd react-icon-pack && yarn format:fix",
"format:example:fix": "cd example && yarn format:fix",
"format:exampleNative:fix": "cd exampleNative && yarn format:fix",
"format:all:fix": "yarn format:fix && yarn format:native:fix && yarn format:web:fix && yarn format:example:fix && yarn format:exampleNative:fix",
"prebuild": "cd react-icon-pack && yarn && cd ..",
"build": "cd react-icon-pack && yarn build",
"generate-fonts": "./cli.js",
"release": "release-it"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/react": "^18.2.79",
"eslint": "8.x",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.1",
"globals": "^15.3.0",
"oslllo-svg-fixer": "^4.0.1",
"prettier": "3.2.5",
"release-it": "^17.3.0",
"svgtofont": "^4.2.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.10.0",
"yargs": "^17.7.2"
},
"release-it": {
"github": {
"release": true
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}