-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.09 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.09 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
{
"name": "superset",
"version": "0.1.0",
"license": "Apache-2.0",
"description": "Building blocks for software development",
"workspaces": [
"searchfn/*",
"botfn/*",
"hostfn/*",
"authfn/*",
"authfn/examples/*",
"authfn/examples/*/*",
"extfn/*",
"extfn/examples/*",
"datafn/client",
"datafn/cli",
"datafn/core",
"datafn/docs",
"datafn/extfn",
"datafn/server",
"datafn/svelte",
"filefn/*",
"clifn/*",
"packages/*",
"filefn/*",
"filefn/examples/full-demo/*"
],
"scripts": {
"build": "turbo run build",
"build:filefn-swift": "swift build --package-path filefn/swift",
"dev": "turbo run dev",
"dev:filefn-demo-server": "npm --prefix filefn/examples/full-demo/server run dev",
"lint": "turbo run lint",
"test": "node scripts/run-tests.mjs",
"test:filefn-server-contract": "npm exec --yes --package=vitest@3.2.4 vitest --run filefn/server/tests/client-contract.test.ts",
"test:filefn-swift": "swift test --package-path filefn/swift",
"test:filefn-swift-bridge-host": "swift test --package-path filefn/swift --filter FileFnWebViewBridgeHostTests",
"test:filefn-swift-bridge": "npm --workspace filefn/swift-bridge test",
"test:filefn-swift-integration": "FILEFN_BASE_URL=${FILEFN_BASE_URL:-http://127.0.0.1:3001/filefn} swift test --package-path filefn/swift --filter FileFnIntegrationTests",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test:coverage",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"fast-glob": "^3.3.3",
"@cloudflare/vitest-pool-workers": "^0.10.4",
"@types/node": "^20.0.0",
"@vitest/ui": "^3.2.4",
"msw": "^2.11.6",
"prettier": "^3.0.0",
"turbo": "^2.0.0",
"typescript": "^5.3.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
},
"author": "21n",
"repository": {
"type": "git",
"url": "git+https://github.com/21nCo/super-functions.git"
},
"bugs": {
"url": "https://github.com/21nCo/super-functions/issues"
},
"packageManager": "npm@10.2.0"
}