-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.89 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
{
"name": "@playcode/embed",
"version": "0.1.0",
"description": "Embed a live Playcode project (an AI-built, Cloud-hosted website or app) into any web page. Zero dependencies, framework-agnostic, responsive, lazy-loaded.",
"keywords": [
"playcode",
"embed",
"iframe",
"ai-website-builder",
"ai-app-builder",
"no-code",
"website-builder",
"app-builder",
"web-component",
"preview"
],
"homepage": "https://playcode.io/ai-website-builder",
"bugs": {
"url": "https://github.com/playcode/embed/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/playcode/embed.git"
},
"license": "MIT",
"author": "Playcode (https://playcode.io)",
"type": "module",
"sideEffects": [
"./dist/auto.js",
"./dist/auto.cjs",
"./dist/auto.global.js"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./web-component": {
"types": "./dist/web-component.d.ts",
"import": "./dist/web-component.js",
"require": "./dist/web-component.cjs"
},
"./auto": {
"types": "./dist/auto.d.ts",
"import": "./dist/auto.js",
"require": "./dist/auto.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"unpkg": "./dist/auto.global.js",
"jsdelivr": "./dist/auto.global.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"test": "node --test --import tsx 'test/**/*.test.ts'",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
},
"devDependencies": {
"@types/node": "^22.20.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
}
}