-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "frieda",
"version": "0.12.1",
"description": "Javascript code generator for the PlanetScale serverless driver.",
"keywords": [
"serverless",
"database",
"mysql",
"sql",
"planetscale",
"javascript",
"typescript",
"edge database"
],
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
"lib:w": "svelte-package --watch",
"build:w": "vite build --watch",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"precommit": "pnpm format && pnpm lint",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"test:coverage": "vitest --coverage --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"postversion": "npm run writeversion && git commit -a -m version",
"writeversion": "scripts/write-version.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"bin": "dist/cli.js",
"homepage": "https://github.com/cdcarson/frieda",
"repository": {
"url": "https://github.com/cdcarson/frieda"
},
"bugs": {
"url": "https://github.com/cdcarson/frieda/issues"
},
"author": {
"name": "Chris Carson",
"email": "chris@nowzoo.com",
"url": "https://github.com/cdcarson"
},
"license": "MIT",
"devDependencies": {
"@sveltejs/adapter-node": "^1.3.1",
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "^1.30.3",
"@sveltejs/package": "^2.2.5",
"@types/fs-extra": "^11.0.4",
"@types/prettier": "^2.7.3",
"@types/prompts": "^2.4.9",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-c8": "^0.30.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-svelte": "^2.35.1",
"postcss": "^8.4.33",
"postcss-load-config": "^4.0.2",
"prettier-plugin-svelte": "^2.10.1",
"publint": "^0.1.16",
"svelte": "^3.59.2",
"svelte-check": "^3.6.3",
"svelte-highlight": "^7.4.8",
"svelte-preprocess": "^5.1.3",
"tslib": "^2.6.2",
"vite": "^4.5.1",
"vitest": "^0.30.1"
},
"types": "./dist/index.d.ts",
"type": "module",
"dependencies": {
"@phenomnomnominal/tsquery": "^6.1.3",
"@planetscale/database": "^1.13.0",
"camelcase": "^7.0.1",
"cli-highlight": "^2.1.11",
"dotenv": "^16.3.1",
"fs-extra": "^11.2.0",
"kleur": "^4.1.5",
"ora": "^6.3.1",
"prettier": "^2.8.8",
"prompts": "^2.4.2",
"sql-template-tag": "^5.2.0",
"strip-ansi": "^7.1.0",
"ts-morph": "^19.0.0",
"typescript": "^5.3.3",
"yargs": "^17.7.2"
}
}