-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 793 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 793 Bytes
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": "recost",
"version": "1.1.0",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/JWebCoder/recost.git"
},
"keywords": [
"js",
"react",
"context",
"state"
],
"author": "João Moura <joao87moura@gmail.com> (https://github.com/JWebCoder)",
"license": "MIT",
"peerDependencies": {
"react": "^18.0.25"
},
"devDependencies": {
"@types/react": "^18.0.25",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"eslint-plugin-react": "^7.31.10",
"typescript": "^4.9.0"
},
"scripts": {
"lint": "eslint src/*.tsx",
"clean": "rm -rf lib/ && mkdir -p lib/",
"build": "tsc",
"prepublish": "npm run build"
}
}