@suiteportal/studio 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +340 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +30 -0
- package/dist/index.d.ts +30 -0
- package/dist/index.js +303 -0
- package/dist/index.js.map +1 -0
- package/dist-frontend/assets/index-AsT3l7Js.css +1 -0
- package/dist-frontend/assets/index-BiaNai5b.js +49 -0
- package/dist-frontend/index.html +14 -0
- package/package.json +63 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>SuitePortal Studio</title>
|
|
7
|
+
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='0.9em' font-size='90'>⚡</text></svg>" />
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-BiaNai5b.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="/assets/index-AsT3l7Js.css">
|
|
10
|
+
</head>
|
|
11
|
+
<body>
|
|
12
|
+
<div id="root"></div>
|
|
13
|
+
</body>
|
|
14
|
+
</html>
|
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@suiteportal/studio",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Local web UI for browsing and editing NetSuite data — like Prisma Studio",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"dist-frontend"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsup && vite build",
|
|
22
|
+
"build:server": "tsup",
|
|
23
|
+
"build:frontend": "vite build",
|
|
24
|
+
"dev:frontend": "vite",
|
|
25
|
+
"clean": "rm -rf dist dist-frontend"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@suiteportal/client-runtime": "^0.2.3",
|
|
29
|
+
"@suiteportal/connector": "^0.2.1",
|
|
30
|
+
"@suiteportal/introspector": "^0.1.2",
|
|
31
|
+
"hono": "^4.6.0",
|
|
32
|
+
"@hono/node-server": "^1.13.0",
|
|
33
|
+
"open": "^10.1.0"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@types/react": "^19.0.0",
|
|
37
|
+
"@types/react-dom": "^19.0.0",
|
|
38
|
+
"@vitejs/plugin-react": "^4.3.0",
|
|
39
|
+
"react": "^19.0.0",
|
|
40
|
+
"react-dom": "^19.0.0",
|
|
41
|
+
"vite": "^6.0.0"
|
|
42
|
+
},
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"author": "Trey Hulse",
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "https://github.com/treyhulse/netsuite-orm",
|
|
48
|
+
"directory": "packages/studio"
|
|
49
|
+
},
|
|
50
|
+
"publishConfig": {
|
|
51
|
+
"access": "public"
|
|
52
|
+
},
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": ">=20.0.0"
|
|
55
|
+
},
|
|
56
|
+
"keywords": [
|
|
57
|
+
"netsuite",
|
|
58
|
+
"studio",
|
|
59
|
+
"suiteportal",
|
|
60
|
+
"orm",
|
|
61
|
+
"data-browser"
|
|
62
|
+
]
|
|
63
|
+
}
|