@sublime-ui/devkit 0.1.0
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/LICENSE +21 -0
- package/README.md +84 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +1438 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +7 -0
- package/package.json +43 -0
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sublime-ui/devkit",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "The Sublime UI CLI (sublime) — offline Android builds, code generators, the navigation compiler, and desktop tooling.",
|
|
5
|
+
"keywords": ["sublime-ui", "cli", "devkit", "codegen", "scaffolding", "electron-forge", "android", "react-native", "typescript"],
|
|
6
|
+
"homepage": "https://sublime-ui.github.io/sublime-ui/",
|
|
7
|
+
"bugs": "https://github.com/sublime-ui/sublime-ui/issues",
|
|
8
|
+
"repository": { "type": "git", "url": "git+https://github.com/sublime-ui/sublime-ui.git", "directory": "devkit" },
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"author": "Aaron Mkandawire",
|
|
11
|
+
"publishConfig": { "access": "public" },
|
|
12
|
+
"type": "module",
|
|
13
|
+
"bin": {
|
|
14
|
+
"sublime": "./dist/cli.js",
|
|
15
|
+
"sui": "./dist/cli.js"
|
|
16
|
+
},
|
|
17
|
+
"exports": {
|
|
18
|
+
".": {
|
|
19
|
+
"types": "./dist/index.d.ts",
|
|
20
|
+
"import": "./dist/index.js"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"dist"
|
|
25
|
+
],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsup",
|
|
28
|
+
"typecheck": "tsc --noEmit && npm run typecheck:fixture",
|
|
29
|
+
"typecheck:fixture": "tsc -p test/fixtures/nav-app/tsconfig.json",
|
|
30
|
+
"test": "vitest run",
|
|
31
|
+
"lint": "eslint src"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"@inquirer/prompts": "^7.0.0",
|
|
35
|
+
"commander": "^12.1.0",
|
|
36
|
+
"execa": "^9.4.0",
|
|
37
|
+
"picocolors": "^1.1.0",
|
|
38
|
+
"typescript": "^5.6.0"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/node": "^22.19.21"
|
|
42
|
+
}
|
|
43
|
+
}
|