-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1001 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1001 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
35
36
37
38
39
{
"name": "obake.js",
"version": "1.2.2",
"description": "a simple watchable state using just Proxy and Promise",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint \"src/**/*.{tsx,ts}\"",
"lint:fix": "eslint \"src/**/*.{tsx,ts}\" --fix",
"spellcheck": "git diff --name-only | cspell --file-list stdin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stagfoo/obake.git"
},
"keywords": [
"state",
"immutable",
"watch",
"simple",
"react",
"frontend"
],
"author": "stagfoo",
"license": "ISC",
"bugs": {
"url": "https://github.com/stagfoo/obake/issues"
},
"homepage": "https://github.com/stagfoo/obake#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"cspell": "^5.18.5",
"eslint": "^8.9.0",
"eslint-config-xo": "^0.40.0",
"eslint-config-xo-space": "^0.32.0",
"typescript": "^4.5.5"
}
}