create-tldraw 3.15.0-canary.0cc8d49543e8
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/cli.cjs +3 -0
- package/package.json +69 -0
package/cli.cjs
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-tldraw",
|
|
3
|
+
"description": "tldraw infinite canvas SDK (create cli).",
|
|
4
|
+
"version": "3.15.0-canary.0cc8d49543e8",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "tldraw Inc.",
|
|
7
|
+
"email": "hello@tldraw.com"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://tldraw.dev",
|
|
10
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/tldraw/tldraw"
|
|
14
|
+
},
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/tldraw/tldraw/issues"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"tldraw",
|
|
20
|
+
"sdk",
|
|
21
|
+
"drawing",
|
|
22
|
+
"app",
|
|
23
|
+
"development",
|
|
24
|
+
"whiteboard",
|
|
25
|
+
"canvas",
|
|
26
|
+
"infinite"
|
|
27
|
+
],
|
|
28
|
+
"bin": "./cli.cjs",
|
|
29
|
+
"files": [
|
|
30
|
+
"dist-cjs",
|
|
31
|
+
"./cli.cjs"
|
|
32
|
+
],
|
|
33
|
+
"scripts": {
|
|
34
|
+
"dev": "./scripts/dev.sh",
|
|
35
|
+
"test-ci": "lazy inherit",
|
|
36
|
+
"test": "yarn run -T jest",
|
|
37
|
+
"test-coverage": "lazy inherit",
|
|
38
|
+
"build": "./scripts/build.sh",
|
|
39
|
+
"pack-tarball": "yarn pack",
|
|
40
|
+
"lint": "yarn run -T tsx ../../internal/scripts/lint.ts"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@bomb.sh/args": "^0.3.1",
|
|
44
|
+
"@clack/core": "^1.0.0-alpha.1",
|
|
45
|
+
"@clack/prompts": "^1.0.0-alpha.1",
|
|
46
|
+
"@tldraw/utils": "3.15.0-canary.0cc8d49543e8",
|
|
47
|
+
"ansi-regex": "^6.1.0",
|
|
48
|
+
"ansi-styles": "^6.2.1",
|
|
49
|
+
"esbuild": "^0.25.6",
|
|
50
|
+
"lazyrepo": "0.0.0-alpha.27",
|
|
51
|
+
"picocolors": "^1.1.1",
|
|
52
|
+
"string-width": "^7.2.0",
|
|
53
|
+
"strip-ansi": "^7.1.0",
|
|
54
|
+
"tar": "^7.4.3"
|
|
55
|
+
},
|
|
56
|
+
"jest": {
|
|
57
|
+
"preset": "../../internal/config/jest/node/jest-preset.js",
|
|
58
|
+
"setupFiles": [
|
|
59
|
+
"raf/polyfill"
|
|
60
|
+
],
|
|
61
|
+
"moduleNameMapper": {
|
|
62
|
+
"^~(.*)": "<rootDir>/src/$1"
|
|
63
|
+
},
|
|
64
|
+
"transformIgnorePatterns": [
|
|
65
|
+
"node_modules/(?!(ansi-styles|string-width|strip-ansi|ansi-regex|get-east-asian-width)/)"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
"// because this is bundled, all dependencies should be dev dependencies.": null
|
|
69
|
+
}
|