-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
39 lines (39 loc) · 1.05 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
{
"name": "@harness/design-system",
"version": "1.6.0",
"description": "Harness Design System - Provides standardized Color, Intent and Style Variations for Harness UI Components",
"source": "src/index.ts",
"main": "./dist/design-system.umd.js",
"exports": {
".": "./dist/design-system.es.js",
"./dist/style.css": "./dist/style.css"
},
"types": "./dist/src/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"prebuild": "yarn clean",
"build": "vite build",
"clean": "rm -rf dist",
"prepublishOnly": "yarn build",
"test": "jest --no-cache src --config ../../jest.config.js"
},
"license": "Apache-2.0",
"repository": "https://github.com/harness/uicore",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"peerDependencies": {
"react": "^17.0.2"
},
"devDependencies": {
"@blueprintjs/core": "^3.20.0",
"@types/react": "^17.0.3",
"dts-bundle-generator": "^6.4.0",
"react": "^17.0.2",
"typescript": "^4.1.3",
"vite": "^2.7.13",
"vite-plugin-dts": "^0.9.9"
}
}