sqyrl 0.0.2
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/README.md +54 -0
- package/dist/index.d.mts +78 -0
- package/dist/index.mjs +1459 -0
- package/package.json +53 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sqyrl",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "A starter for creating a TypeScript package.",
|
|
5
|
+
"logo": "https://cdn.jsdelivr.net/gh/carderne/sqyrl@main/docs/logo.png",
|
|
6
|
+
"homepage": "https://github.com/carderne/sqyrl#readme",
|
|
7
|
+
"bugs": {
|
|
8
|
+
"url": "https://github.com/carderne/sqyrl/issues"
|
|
9
|
+
},
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"author": "Chris Arderne <chris@rdrn.me>",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/carderne/sqyrl.git"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"type": "module",
|
|
20
|
+
"exports": {
|
|
21
|
+
".": "./dist/index.mjs",
|
|
22
|
+
"./package.json": "./package.json"
|
|
23
|
+
},
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "vp pack",
|
|
29
|
+
"dev": "vp pack --watch",
|
|
30
|
+
"test": "vp test",
|
|
31
|
+
"check": "vp check",
|
|
32
|
+
"prepublishOnly": "vp run build",
|
|
33
|
+
"gen:types": "ohm generateBundles --withTypes 'src/sql.ohm'"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"ohm-js": "^17.5.0"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@ohm-js/cli": "^2.0.1",
|
|
40
|
+
"@types/node": "^25.5.0",
|
|
41
|
+
"@typescript/native-preview": "7.0.0-dev.20260316.1",
|
|
42
|
+
"bumpp": "^11.0.1",
|
|
43
|
+
"typescript": "^5.9.3",
|
|
44
|
+
"vite-plus": "^0.1.11"
|
|
45
|
+
},
|
|
46
|
+
"packageManager": "pnpm@10.32.1",
|
|
47
|
+
"pnpm": {
|
|
48
|
+
"overrides": {
|
|
49
|
+
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
|
|
50
|
+
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|