-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
70 lines (70 loc) · 1.99 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
{
"name": "ag-grid-svelte",
"version": "0.3.0",
"description": "An unofficial Svelte wrapper for AG Grid",
"type": "module",
"devDependencies": {
"@playwright/test": "^1.34.0",
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.18.0",
"@sveltejs/package": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"ag-grid-community": "^30.0.0",
"ag-grid-enterprise": "^30.0.0",
"commit-and-tag-version": "^11.2.1",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte3": "^4.0.0",
"highlight.js": "^11.8.0",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.0",
"sass": "^1.62.1",
"svelte": "^3.55.0",
"svelte-check": "^3.3.2",
"svelte-preprocess": "^5.0.3",
"svelte2tsx": "^0.6.14",
"tslib": "^2.5.2",
"typescript": "^5.0.4",
"vite": "^4.3.8"
},
"peerDependencies": {
"ag-grid-community": "^28 || ^29 || ^30",
"svelte": "^3"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"package": "svelte-package",
"preview": "vite preview",
"test": "playwright test",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check --plugin-search-dir=. . && eslint .",
"format": "prettier --write --plugin-search-dir=. .",
"release": "commit-and-tag-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MichaelKim/ag-grid-svelte.git"
},
"keywords": [],
"author": "Michael Kim",
"license": "MIT",
"bugs": {
"url": "https://github.com/MichaelKim/ag-grid-svelte/issues"
},
"homepage": "https://github.com/MichaelKim/ag-grid-svelte#readme",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"svelte": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
}
}