-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.66 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.66 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@liquid-js/fragql",
"version": "1.1.1",
"description": "Another GraphQL template literal.",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./lib/gql.js": {
"types": "./lib/gql.d.ts",
"default": "./lib/gql.js"
}
},
"bin": "lib/cli.js",
"files": [
"lib"
],
"peerDependencies": {
"codemirror": "<6.0.0"
},
"peerDependenciesMeta": {
"codemirror": {
"optional": true
}
},
"dependencies": {
"@lit-labs/ssr": "^4.0.0",
"graphql": "^16.12.0",
"lit": "^3.3.2",
"param-case": "^4.0.0",
"resolve": "^1.22.11",
"yargs": "^18.0.0"
},
"devDependencies": {
"@codemirror/language": "6.0.0",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@liquid-js/rollup-plugin-closure-compiler": "^0.28.1",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@stylistic/eslint-plugin": "^5.7.0",
"@testdeck/mocha": "^0.3.3",
"@types/chai": "^5.2.3",
"@types/codemirror": "^5.60.17",
"@types/mocha": "^10.0.10",
"@types/node": "<25.0.0",
"@types/resolve": "^1.20.6",
"@types/source-map-support": "^0.5.10",
"@types/yargs": "^17.0.35",
"chai": "^6.2.2",
"clean-package": "^2.2.0",
"cm-highlight": "^0.1.1",
"codemirror": "<6.0.0",
"codemirror-graphql": "^2.2.4",
"commit-and-tag-version": "^12.6.1",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.2.0",
"eslint-plugin-prefer-arrow-functions": "^3.9.1",
"eslint-plugin-unused-imports": "^4.3.0",
"google-closure-compiler": "^20260114.0.0",
"husky": "^9.1.7",
"mocha": "^11.7.5",
"npm-check-updates": "^19.3.1",
"rimraf": "^6.1.2",
"rollup": "^4.55.2",
"rollup-plugin-inject-process-env": "^1.3.1",
"source-map-support": "^0.5.21",
"ts-node-maintained": "^10.9.6",
"tslib": "^2.8.1",
"typedoc": "^0.28.16",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1"
},
"scripts": {
"build": "rimraf lib && rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript && tsc -p tsconfig.lib.json",
"test": "mocha",
"lint": "eslint . --fix",
"prepublishOnly": "npm run build",
"prepare": "husky",
"release": "git diff --exit-code && commit-and-tag-version && git push --follow-tags origin",
"docs": "typedoc",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Liquid-JS/fragql.git"
},
"keywords": [
"graphql",
"query",
"fragment",
"builder"
],
"author": "HitkoDev <development@hitko.si>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Liquid-JS/fragql/issues"
},
"homepage": "https://liquid-js.github.io/fragql/",
"packageManager": "yarn@4.12.0",
"clean-package": {
"remove": [
"packageManager",
"scripts",
"devDependencies",
"clean-package"
]
}
}