-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.78 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
{
"name": "@calycode/core",
"version": "0.6.9",
"description": "Core functionality for the Caly Xano tooling providing programmatic access to Xano workflows",
"publishConfig": {
"tag": "latest",
"access": "public"
},
"license": "MIT",
"author": "Mihály Tóth | @calycode",
"keywords": [
"xano",
"cli",
"core",
"api",
"openapi",
"backend",
"automation"
],
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"types": "dist/index.bundled.d.ts",
"type": "module",
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/calycode/xano-tools.git",
"directory": "packages/core"
},
"bugs": {
"url": "https://github.com/calycode/xano-tools/issues"
},
"homepage": "https://github.com/calycode/xano-tools/tree/main/packages/core#readme",
"devDependencies": {
"uvu": "^0.5.6",
"@repo/types": "workspace:*",
"@repo/utils": "workspace:*"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"clean": "trash dist tsconfig.tsbuildinfo",
"build:js": "tsx esbuild.config.ts",
"build:types": "tsc",
"bundle:types": "rollup -c rollup.config.js",
"postbuild": "tsx ../../scripts/clean-types.ts . index.bundled.d.ts",
"build": "pnpm clean && pnpm build:js && pnpm build:types && pnpm bundle:types && pnpm postbuild"
}
}