-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "@dromney/react-gear-gen",
"version": "0.1.21",
"description": "A library for displaying gears in react",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run clean && tsc && npm run copy-styles",
"clean": "rm -rf ./dist/**",
"copy-styles": "mkdir ./dist/styles && cp ./src/styles/** ./dist/styles"
},
"prepublish": "npm run build",
"repository": {
"type": "git",
"url": "git+https://github.com/RomneyDa/react-gear-gen.git"
},
"keywords": [
"gears",
"gear"
],
"author": "Dallin Romney",
"license": "MIT",
"bugs": {
"url": "https://github.com/RomneyDa/react-gear-gen/issues"
},
"homepage": "https://github.com/RomneyDa/react-gear-gen#readme",
"devDependencies": {
"@types/react": "^18.2.20",
"react": "^18.2.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@dromney/gear-gen": "^0.2.11",
"gear-gen": "link:@#dromney/gear-gen"
}
}