-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "@davidwarrington/translate",
"version": "1.2.0",
"type": "module",
"main": "./dist/translate.umd.cjs",
"module": "./dist/translate.js",
"sideEffects": false,
"types": "./dist/translate.d.ts",
"author": {
"name": "David Warrington",
"url": "https://github.com/davidwarrington"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidwarrington/translate.git"
},
"bugs": {
"url": "https://github.com/davidwarrington/translate/issues"
},
"homepage": "https://github.com/davidwarrington/translate#readme",
"license": "MIT",
"files": [
"dist"
],
"exports": {
"types": "./dist/translate.d.ts",
"import": "./dist/translate.js",
"require": "./dist/translate.umd.cjs"
},
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"lint": "eslint .",
"test": "vitest"
},
"devDependencies": {
"@davidwarrington/prettier-config": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vite-plugin-dts": "^3.6.0",
"vitest": "^0.34.6"
}
}