-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 972 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 972 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
35
36
37
38
{
"version": "2.0.3",
"repository": "https://github.com/edlink/edlink-node-sdk",
"license": "Unlicense",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build:core": "esbuild src/index.ts --bundle --format=cjs --target=esnext --platform=node --outfile=dist/index.js --sourcemap",
"build:types": "tsc --declaration --emitDeclarationOnly --project tsconfig.json --outDir dist",
"build": "npm run build:core && npm run build:types",
"test": "jest"
},
"husky": {},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 120
},
"name": "@edlink/typescript",
"author": "Jaron",
"devDependencies": {
"@types/jest": "^29.5.14",
"dotenv": "^16.0.2",
"esbuild": "^0.24.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tslib": "^2.4.0",
"typescript": "^4.8.3"
}
}