-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.71 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.71 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@pinia-orm/normalizr",
"version": "1.10.3",
"description": "Normalizes JSON according to schema for Redux and Flux applications",
"bugs": {
"url": "https://github.com/CodeDredd/pinia-orm/issues"
},
"homepage": "https://github.com/CodeDredd/pinia-orm",
"repository": {
"url": "https://github.com/CodeDredd/pinia-orm.git",
"type": "git"
},
"keywords": [
"flux",
"redux",
"normalize",
"api",
"json"
],
"files": [
"dist/",
"index.d.ts",
"LICENSE",
"README.md"
],
"type": "module",
"funding": "https://github.com/sponsors/codedredd",
"jsdelivr": "dist/index.mjs",
"unpkg": "dist/index.mjs",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./*": "./*"
},
"sideEffects": false,
"scripts": {
"build": "unbuild",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path . -l @pinia-orm/normalizr -r 1",
"size": "size-limit",
"flow": "flow",
"flow:ci": "flow check",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix"
},
"author": "Paul Armstrong",
"contributors": [
"Dan Abramov",
"Gregor Becker"
],
"license": "MIT",
"devDependencies": {
"@nuxt/eslint-config": "^0.3.13",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@size-limit/preset-small-lib": "^11.1.4",
"eslint": "^9.6.0",
"immutable": "^5.0.3",
"size-limit": "^11.1.4",
"typescript": "^5.5.3",
"unbuild": "^3.1.0"
},
"size-limit": [
{
"path": "dist/index.mjs",
"limit": "2 kB"
}
]
}