-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.29 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
{
"name": "@dokuji/i18n",
"version": "0.2.3",
"author": "Steven Salaun",
"license": "MIT",
"files": [
"dist"
],
"type": "module",
"main": "./dist/i18n.umd.cjs",
"module": "./dist/i18n.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/i18n.js",
"require": "./dist/i18n.umd.cjs"
}
},
"scripts": {
"test": "jest",
"build": "rm -rf dist/* && npm run test && tsc && vite build",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/lodash.get": "^4.4.7",
"@types/lodash.merge": "^4.6.7",
"@types/mustache": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.15.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"typescript": "^4.5.4",
"vite": "^5.1.0",
"vite-plugin-dts": "^1.1.1"
},
"dependencies": {
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2",
"mustache": "^4.2.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}