-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 KB
/
package.json
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": "@codaco/protocol-validation",
"version": "3.0.0",
"main": "dist/index.js",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/complexdatacollective/protocol-validation.git"
},
"author": "Complex Data Collective <hello@complexdatacollective.org>",
"type": "module",
"types": "dist/index.d.ts",
"description": "Utilities for validating and migrating Network Canvas protocol files.",
"scripts": {
"build": "bun run build.mjs",
"dev": "bun --watch ./src/index.ts",
"test": "bun test",
"prepublishOnly": "bun run build"
},
"files": [
"dist"
],
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"bun-plugin-dts": "0.2.1",
"bun-types": "^1.1.33",
"eslint": "^8.57.1",
"jszip": "^3.10.1",
"typescript": "^5.6.3",
"@codaco/shared-consts": "^0.0.2",
"ajv": "^8.17.1",
"chalk": "^5.3.0",
"eslint-plugin-prettier": "^5.2.1",
"lodash-es": "^4.17.21",
"prettier": "^3.3.3"
},
"dependencies": {}
}