-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
120 lines (120 loc) · 2.93 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "solid-ag-grid",
"version": "0.0.200",
"description": "AG Grid SolidJS Component",
"license": "MIT",
"author": "Niall Crosby <[email protected]>",
"contributors": [
{
"name": "David Di Biase",
"email": "[email protected]",
"url": "https://github.com/davedbase"
}
],
"repository": {
"type": "git",
"url": "https://github.com/solidjs-community/solid-ag-grid"
},
"homepage": "https://github.com/solidjs-community/solid-ag-grid",
"bugs": {
"url": "https://github.com/solidjs-community/solid-ag-grid/issues"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/server.cjs",
"module": "./dist/server.js",
"types": "./dist/index.d.ts",
"exports": {
"worker": {
"solid": "./dist/server.jsx",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/server.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/server.cjs"
}
},
"browser": {
"solid": "./dist/index.jsx",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"deno": {
"solid": "./dist/server.jsx",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/server.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/server.cjs"
}
},
"node": {
"solid": "./dist/server.jsx",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/server.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/server.cjs"
}
},
"solid": "./dist/index.jsx",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"scripts": {
"dev": "vite serve dev",
"clean": "rimraf bundles dist",
"build": "npx gulp && tsup",
"build-prod": "npm run build",
"format": "prettier -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"dev/**/*.{js,ts,json,css,tsx,jsx}\"",
"update-deps": "taze -w && pnpm i",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"ag-grid-community": "31.1.1"
},
"peerDependencies": {
"solid-js": ">=1.0.0"
},
"devDependencies": {
"ag-grid-community": "31.1.1",
"ag-grid-enterprise": "31.1.1",
"prettier": "3.2.5",
"solid-js": "^1.8.16",
"taze": "^0.7.6",
"tsup": "^8.0.2",
"tsup-preset-solid": "^2.2.0",
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vite-plugin-solid": "^2.10.2"
},
"keywords": [
"solid"
],
"packageManager": "[email protected]",
"browser": {
"./dist/server.js": "./dist/index.js",
"./dist/server.cjs": "./dist/index.cjs"
},
"typesVersions": {}
}