-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
package.json
File metadata and controls
61 lines (61 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
{
"name": "@generaltranslation/compiler",
"version": "1.1.23",
"description": "Universal plugin for compile-time optimization of GT translation components",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "General Translation, Inc.",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"build:clean": "sh ../../scripts/clean.sh && pnpm run build",
"build:release": "pnpm run build:clean",
"format": "prettier --write src",
"patch": "pnpm version patch",
"release": "pnpm run build:clean && pnpm publish",
"release:alpha": "pnpm run build:clean && pnpm publish --tag alpha",
"release:beta": "pnpm run build:clean && pnpm publish --tag beta",
"release:latest": "pnpm run build:clean && pnpm publish --tag latest",
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{js,ts,tsx}\" --fix",
"test": "vitest run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/generaltranslation/gt.git"
},
"keywords": [
"unplugin",
"webpack",
"vite",
"rollup",
"gt-next",
"translation",
"i18n"
],
"dependencies": {
"@babel/generator": "^7.23.0",
"@babel/parser": "^7.23.0",
"@babel/traverse": "^7.23.0",
"@babel/types": "^7.23.0",
"generaltranslation": "workspace:*",
"unplugin": "^2.3.10"
},
"devDependencies": {
"@types/babel__core": "^7.20.0",
"@types/babel__generator": "^7.6.0",
"@types/babel__traverse": "^7.20.0",
"@types/node": "^20.0.0",
"eslint": "^8.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"files": [
"dist"
],
"engines": {
"node": ">=16.0.0"
}
}