-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1004 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1004 Bytes
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
{
"name": "abs-translate",
"version": "1.0.1",
"description": "A simple translation system for static pages",
"types": "dist/abs-translate.d.ts",
"browser": "dist/abs-translate.js",
"scripts": {
"cleanDist": "rimraf dist",
"buildTypescript": "tsc",
"copyTypescript": "copyfiles -f ./src/*.ts dist",
"generateNxScript": "node ./build-utils/generateNxScript.js ./dist/abs-translate.js",
"build": "npm run cleanDist && npm run buildTypescript && npm run copyTypescript && npm run generateNxScript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Abstractn/abs-translate.git"
},
"keywords": [
"translate",
"multilanguage",
"typescript",
"javascript"
],
"author": "Abstractn",
"license": "MIT",
"bugs": {
"url": "https://github.com/Abstractn/abs-translate/issues"
},
"homepage": "https://github.com/Abstractn/abs-translate#readme",
"devDependencies": {
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
}
}