-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.25 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.25 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
{
"name": "@aidc-toolkit/core",
"version": "1.0.47",
"description": "Core functionality for AIDC Toolkit",
"type": "module",
"main": "dist/index.js",
"homepage": "https://aidc-toolkit.com",
"repository": {
"type": "git",
"url": "git+https://github.com/aidc-toolkit/core.git"
},
"bugs": {
"url": "https://github.com/aidc-toolkit/core/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Kevin Dean",
"email": "Kevin.Dean@datadevelopment.com",
"url": "https://www.linkedin.com/in/kdean"
},
"scripts": {
"lint": "eslint",
"tsc-src": "tsc --project tsconfig-src.json",
"build:non-prod": "rimraf dist tsconfig-src.tsbuildinfo && npm run tsc-src -- --declarationMap --sourceMap",
"build:alpha": "npm run build:non-prod && tsc --project tsconfig-config.json --noEmit",
"build:beta": "npm run build:non-prod",
"build:prod": "npm run tsc-src -- --noEmit && tsup --tsconfig tsconfig-tsup.json",
"build:doc": "npm run build:non-prod"
},
"devDependencies": {
"@aidc-toolkit/dev": "^1.0.46"
},
"dependencies": {
"base64-js": "^1.5.1",
"i18next": "^25.8.14",
"i18next-browser-languagedetector": "^8.2.1",
"i18next-cli-language-detector": "^1.1.8",
"tslog": "^4.10.2"
}
}