-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
50 lines (50 loc) · 1.47 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
{
"name": "@interval/sdk",
"version": "2.0.0",
"description": "The frontendless framework for high growth companies. Interval automatically generates apps by inlining the UI in your backend code. It's a faster and more maintainable way to build internal tools, rapid prototypes, and more.",
"homepage": "https://interval.com",
"repository": {
"type": "git",
"url": "github:interval/interval-node"
},
"bugs": "https://github.com/interval/interval-node/issues",
"keywords": ["internal tool", "app", "ui", "ui builder"],
"license": "MIT",
"engines": {
"node": ">=12.17.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"tar": "yarn pack",
"check": "tsc --noEmit",
"build": "tsc",
"demo:basic": "node ./dist/examples/basic/index.js",
"dev": "nodemon --watch src -e ts src/examples/${1:-basic}/index.ts"
},
"dependencies": {
"@brillout/import": "^0.2.2",
"cross-fetch": "^3.1.5",
"evt": "^2.4.10",
"superjson": "^1.9.1",
"uuid": "^9.0.0",
"ws": "^8.4.1",
"zod": "^3.13.3"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.135.0",
"@aws-sdk/s3-request-presigner": "^3.135.0",
"@faker-js/faker": "^7.3.0",
"@types/dedent": "^0.7.0",
"@types/node": "^17.0.8",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.2.0",
"dotenv": "^16.3.1",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"resolutions": {
"ts-node": "^10.9.1"
}
}