-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.71 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
{
"private": true,
"name": "@ag-grid-devtools/systemjs-plugin",
"version": "0.1.0",
"description": "SystemJS plugin for TypeScript/JSX/CSS source files",
"license": "MIT",
"author": "AG Grid <[email protected]>",
"homepage": "https://www.ag-grid.com/",
"repository": {
"type": "git",
"url": "https://github.com/ag-grid/devtools.git"
},
"bugs": {
"url": "https://github.com/ag-grid/devtools/issues"
},
"type": "module",
"main": "index.ts",
"scripts": {
"build": "pnpm run build:lib && pnpm run build:readme && pnpm run build:pkg",
"build:lib": "vite build",
"build:readme": "cp README.md dist/README.md",
"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"
},
"pkg": {
"main": "./index.js"
},
"devDependencies": {
"@ag-grid-devtools/build-config": "workspace:*",
"@babel/core": "^7.23.7",
"@babel/plugin-proposal-dynamic-import": "^7.18.6",
"@babel/plugin-proposal-export-default-from": "^7.23.3",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/plugin-transform-modules-systemjs": "^7.23.3",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/plugin-transform-typescript": "^7.23.6",
"@types/babel__core": "^7.20.5",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0"
},
"peerDependencies": {
"eslint": "8.57.0",
"typescript": "^5.5.4",
"vite": "^5.4.4",
"vite-plugin-node-polyfills": "^0.22"
}
}