-
Notifications
You must be signed in to change notification settings - Fork 274
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.62 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
{
"name": "ziggy-js",
"version": "2.6.3",
"description": "Use your Laravel named routes in JavaScript.",
"keywords": [
"laravel",
"routes",
"ziggy"
],
"homepage": "https://github.com/tighten/ziggy",
"bugs": "https://github.com/tighten/ziggy/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tighten/ziggy.git"
},
"authors": [
{
"name": "Daniel Coulbourne",
"email": "daniel@tighten.co"
},
{
"name": "Jake Bathman",
"email": "jake@tighten.co"
},
{
"name": "Jacob Baker-Kretzmar",
"email": "jacob@tighten.co"
}
],
"files": [
"src/js/index.d.ts",
"dist"
],
"type": "module",
"module": "./dist/index.js",
"exports": {
"types": "./src/js/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"types": "./src/js/index.d.ts",
"scripts": {
"build": "tsdown",
"build:npm": "tsdown --config tsdown.npm.config.ts",
"test": "vitest --typecheck",
"format": "prettier . --write",
"prepublishOnly": "npm run build:npm"
},
"dependencies": {
"qs-esm": "^7.0.3"
},
"devDependencies": {
"@types/node": "^25.9.4",
"jsdom": "^28.1.0",
"prettier": "^3.8.1",
"tsdown": "^0.22.3",
"typescript": "^6.0.3",
"vitest": "^4.0.18"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"tabWidth": 4
}
}