-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.23 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.23 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
{
"name": "codec-validator-action",
"version": "2.0.0",
"description": "GitHub Action and npm package to validate codec.json files",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:action && npm run build:lib",
"build:action": "ncc build src/main.ts -o dist/action --source-map --license licenses.txt",
"build:lib": "tsc --project tsconfig.lib.json",
"package": "npm run build",
"test": "tsx --test tests/**/*.test.ts",
"test:watch": "tsx --test --watch tests/**/*.test.ts"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/test/**/*",
"dist/utils/**/*"
],
"keywords": [
"github-action",
"codec",
"validation",
"bacnet",
"milesight"
],
"author": "Milesight IoT",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@vercel/ncc": "^0.38.1",
"tsx": "^4.21.0",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/FengFuLiu/codec-validator-action.git"
}
}