-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
44 lines (44 loc) · 1.26 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
{
"name": "@harness/icons",
"version": "1.325.0",
"description": "Harness UICore - Lego for building Harness UI applications",
"source": "src/index.ts",
"main": "dist/icons.umd.js",
"module": "dist/icons.es.js",
"types": "dist/src/index.d.ts",
"styles": "dist/style.css",
"files": [
"dist/*"
],
"scripts": {
"prebuild": "yarn clean && yarn ui:icons",
"build": "vite build",
"clean": "rm -rf dist",
"prepublishOnly": "yarn build",
"ui:icons": "node ./scripts/build-icons.js > ./src/HarnessIcons.ts && prettier --write src/HarnessIcons.ts",
"test": "jest --no-cache src --config ../../jest.config.js"
},
"license": "UNLICENSED",
"repository": "https://github.com/harness/uicore",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"peerDependencies": {
"@harness/design-system": "^1.0.0",
"react": "^17.0.2"
},
"devDependencies": {
"@harness/design-system": "^1.4.0",
"@svgr/core": "^6.2.1",
"@svgr/plugin-svgo": "^6.2.0",
"@types/react": "^17.0.3",
"dts-bundle-generator": "^6.4.0",
"glob": "^7.1.4",
"prettier": "^2.2.1",
"react": "^17.0.2",
"typescript": "^4.1.3",
"vite": "^2.7.13",
"vite-plugin-dts": "^0.9.9",
"vite-plugin-react-svg": "^0.2.0"
}
}