-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.39 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.39 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "mobx-i18n",
"version": "0.7.2",
"license": "LGPL-3.0",
"author": "shiy2008@gmail.com",
"description": "Responsive Translation utility based on TypeScript & MobX",
"keywords": [
"translate",
"international",
"i18n",
"utility",
"toolkit",
"typescript",
"mobx",
"responsive"
],
"homepage": "https://idea2app.github.io/MobX-i18n/",
"repository": {
"type": "git",
"url": "git+https://github.com/idea2app/MobX-i18n.git"
},
"bugs": {
"url": "https://github.com/idea2app/MobX-i18n/issues"
},
"source": "source/index.ts",
"types": "dist/index.d.ts",
"module": "dist/index.esm.js",
"main": "dist/index.js",
"dependencies": {
"@swc/helpers": "^0.5.17",
"@types/node": "^22.18.3",
"regenerator-runtime": "^0.14.1",
"web-utility": "^4.6.0"
},
"peerDependencies": {
"mobx": ">=6.11"
},
"devDependencies": {
"@parcel/config-default": "~2.15.4",
"@parcel/packager-ts": "~2.15.4",
"@parcel/transformer-typescript-tsc": "~2.15.4",
"@parcel/transformer-typescript-types": "~2.15.4",
"@types/jest": "^29.5.14",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^16.1.6",
"mobx": "^6.13.7",
"parcel": "~2.15.4",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typedoc": "^0.28.13",
"typedoc-plugin-mdn-links": "^5.0.9",
"typescript": "~5.9.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@swc/core"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"lint-staged": {
"*.{md,json,yml,ts}": "prettier --write"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom"
},
"browserslist": "> 0.5%, last 2 versions, not dead, IE 11",
"targets": {
"main": {
"optimize": true
}
},
"scripts": {
"prepare": "husky",
"test": "lint-staged && jest",
"build": "rm -rf dist/ docs/ && parcel build && typedoc source/",
"prepublishOnly": "npm test && npm run build"
}
}