-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 938 Bytes
/
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
{
"name": "svg-to-component-parse",
"version": "1.1.2",
"engines": {
"node": "^20"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"/*.md",
"package.json"
],
"scripts": {
"lint": "eslint src",
"lint:ts": "tsc --noEmit",
"test": "pnpm jest",
"test:coverage": "pnpm jest --config=jest.coverage.config.js",
"build": "rm -rf ./lib && tsc && pnpm run build:tpl && pnpm run build:md",
"build:tpl": "cp -rf ./src/template ./lib",
"build:md": "cp -f ./README.zh_CN.md ./README.md"
},
"dependencies": {
"fast-xml-parser": "^4.3.4",
"lodash": "^4.17.21",
"prettier": "^3.2.5"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.16",
"@types/prettier": "^2.7.3"
}
}