-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.34 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.34 KB
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
{
"name": "pptb-forge-sql",
"version": "0.1.1",
"displayName": "Forge SQL",
"description": "Write and execute SQL against Dataverse — SELECT, INSERT, UPDATE, and DELETE. Translates to FetchXML and Web API calls.",
"main": "index.html",
"icon": "icon.svg",
"author": "Björn Rödiger <bjoern@roediger.dev>",
"license": "MIT",
"contributors": [
{
"name": "Björn Rödiger",
"email": "bjoern@roediger.dev"
},
{
"name": "Mark Carrington"
}
],
"configurations": {
"repository": "https://github.com/broediger/pptb-forge-sql",
"readmeUrl": "https://raw.githubusercontent.com/broediger/pptb-forge-sql/refs/heads/main/README.md",
"website": "https://github.com/broediger/pptb-forge-sql"
},
"repository": {
"type": "git",
"url": "https://github.com/broediger/pptb-forge-sql.git"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"watch": "vite build --watch",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\"",
"type-check": "tsc --noEmit",
"finalize-package": "npm shrinkwrap"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.23",
"monaco-editor": "^0.55.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^4.2.2",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@pptb/types": "^1.2.0",
"@tailwindcss/vite": "^4.2.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"prettier": "^3.8.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.57.2",
"vite": "^7.1.11",
"vitest": "^4.1.2"
},
"files": [
"dist",
"icon.svg",
"npm-shrinkwrap.json"
]
}