-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.87 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
50
51
52
53
54
55
56
57
58
{
"name": "@js-toolkit/mobx-utils",
"version": "2.11.0",
"description": "MobX utils",
"main": "index.js",
"types": "index.d.ts",
"author": "VZH",
"license": "MIT",
"keywords": [
"mobx",
"mobx utils",
"mobx store",
"mobx model",
"mobx serialization"
],
"repository": {
"type": "git",
"url": "https://github.com/vlazh/mobx-utils"
},
"scripts": {
"clean": "rimraf dist/*",
"copy:configs": "copyfiles package.json README.md LICENSE .npmignore ./dist/",
"minify": "node-utils-minify --replace ./dist",
"build": "npm run clean && tsc --project ./tsconfig.json",
"patch-publish": "npm run build && npm run minify && npm version patch --no-workspaces-update -m 'v%s' && npm run copy:configs && cd ./dist && npm publish --access public && git push --follow-tags",
"minor-publish": "npm run build && npm run minify && npm version minor --no-workspaces-update -m 'v%s' && npm run copy:configs && cd ./dist && npm publish --access public && git push --follow-tags"
},
"optionalDependencies": {
"@js-toolkit/node-utils": "^1.2.1"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@js-toolkit/configs": "^3.93.13",
"@js-toolkit/utils": "^1.55.1",
"@types/eslint": "^9.6.1",
"@types/eslint__eslintrc": "^2.1.2",
"@types/eslint__js": "^8.42.3",
"@types/jwt-decode": "^3.1.0",
"copyfiles": "^2.4.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"jwt-decode": "^4.0.0",
"localforage": "^1.10.0",
"mobx": "^6.13.5",
"mobx-utils": "^6.1.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"terser": "^5.37.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"valtors": "^2.6.2",
"yargs": "^17.7.2"
}
}