-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.54 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.54 KB
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
50
51
52
53
54
55
56
57
58
59
{
"name": "@capitec/omni-state",
"version": "0.1.3",
"description": "Simple web app state and storage management",
"author": "Capitec",
"license": "MIT",
"homepage": "https://github.com/capitec/omni-state",
"repository": {
"type": "git",
"url": "git+https://github.com/capitec/omni-state.git"
},
"bugs": {
"url": "https://github.com/capitec/omni-state/issues"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16.x"
},
"files": [
"dist",
"!dist/**/*.tests.*",
"!dist/**/*.test.*",
"!dist/**/*.spec.*",
"src/**/*.ts",
"src/**/*.js",
"!src/**/*.spec.*",
"!src/**/*.tests.*",
"!src/**/*.test.*"
],
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 0",
"lint": "eslint src/**/*.{js,ts}",
"docs": "npm run docs:api && npm run docs:copy && npm run docs:contributors",
"docs:api": "npx typedoc --out docs/api src/index.ts",
"docs:contributors": "npx all-contributors generate",
"docs:copy": "copyfiles -a \"./docs/logos/*\" \"./.oss-docs.json\" \"./docs/api\"",
"contributors:add": "npx all-contributors add",
"prepublish": "npm run build"
},
"keywords": [
"app state",
"state management"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"all-contributors-cli": "^6.25.1",
"copyfiles": "^2.4.1",
"command-line-args": "^5.2.1",
"eslint": "^8.41.0",
"eslint-plugin-tsdoc": "^0.2.16",
"package-json": "^8.1.0",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
}
}