-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.17 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
{
"name": "@brimstone/react",
"version": "0.1.3",
"description": "A simple React translation library.",
"main": "./dist/index.js",
"files": [
"./dist/**/*"
],
"scripts": {
"lint": "ts-standard",
"prebuild": "rimraf ./dist",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/brimstone-js/brimstone.git"
},
"author": "Matthew Downs <matthew.downsc@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brimstone-js/brimstone/issues"
},
"homepage": "https://github.com/brimstone-js/brimstone#readme",
"dependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"csv": "^6.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.75.7",
"rollup-plugin-terser": "^7.0.2",
"ts-loader": "^9.3.1",
"ts-standard": "^11.0.0",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"ts-standard": {
"ignore": [
"/dist",
"/scripts",
"/rollup.config.js"
]
}
}