-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 1.94 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 1.94 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@ainativekit/devtools",
"version": "1.2.0",
"description": "Development tools for building and testing ChatGPT Apps using ChatGPT Apps SDK",
"author": "Jake Lin",
"license": "MIT",
"type": "module",
"keywords": [
"chatgpt",
"chatgpt-apps",
"chatgpt-apps-sdk",
"chatgpt-widget",
"openai",
"openai-chatgpt",
"devtools",
"development-tools",
"developer-tools",
"ainativekit",
"react",
"react-devtools",
"testing",
"mock",
"simulator",
"debug",
"debugging",
"mcp",
"mcp-server",
"typescript",
"theme",
"dark-mode",
"responsive",
"viewport"
],
"repository": {
"type": "git",
"url": "https://github.com/AINativeKit/chatgpt-apps-sdk-devtools"
},
"bugs": {
"url": "https://github.com/AINativeKit/chatgpt-apps-sdk-devtools/issues"
},
"homepage": "https://github.com/AINativeKit/chatgpt-apps-sdk-devtools#readme",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CONTRIBUTING.md"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run clean && npm run build"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"@ainativekit/ui": "^1.0.0"
},
"peerDependenciesMeta": {
"@ainativekit/ui": {
"optional": true
}
},
"devDependencies": {
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"typescript": "^5.6.0",
"tsup": "^8.0.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"@ainativekit/ui": "^1.0.0"
}
}