-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"private": true,
"name": "@ag-grid-devtools/worker-utils",
"version": "0.0.1",
"license": "MIT",
"description": "Worker utility helpers",
"author": "AG Grid <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/ag-grid/devtools.git"
},
"type": "module",
"main": "./lib.ts",
"module": "./lib.ts",
"scripts": {
"build": "pnpm run build:lib && pnpm run build:docs && pnpm run build:pkg",
"build:lib": "vite build",
"build:docs": "typedoc",
"build:pkg": "pnpm run --filter build-tools pkg $PWD $PWD/dist/package.json",
"lint": "pnpm run '/^lint:.*/'",
"lint:eslint": "eslint --ext js,cjs,mjs,ts .",
"lint:typescript": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest watch",
"update-event-keys": "./scripts/update-event-keys ./src/eventKeys.ts"
},
"pkg": {
"type": "module",
"main": "./lib/lib.cjs",
"module": "/lib/lib.js",
"types": "./lib.d.ts",
"exports": {
".": {
"import": "./lib/lib.js",
"require": "./lib/lib.cjs"
}
}
},
"dependencies": {
"@ag-grid-devtools/types": "workspace:*",
"@ag-grid-devtools/utils": "workspace:*",
"@types/graceful-fs": "4.1.9",
"graceful-fs": "4.2.11"
},
"devDependencies": {
"@ag-grid-devtools/build-config": "workspace:*"
},
"peerDependencies": {
"eslint": "8.57.0",
"typedoc": "^0.26.7",
"typescript": "5.5.4",
"vite": "^5.4.4",
"vitest": "^1.6.0"
}
}