-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 KB
/
package.json
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
{
"name": "remix-paraglidejs",
"version": "1.0.1",
"description": "remix utils and examples to work with paraglidejs",
"main": "index.js",
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"exports": {
"./package.json": "./package.json",
"./client": "./build/src/client.js",
"./server": "./build/src/server.js"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc --project tsconfig.json --outDir ./build",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lint": "eslint --ext .ts,.tsx src/",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage --run"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/BRIKEV/remix-paraglidejs.git"
},
"keywords": [
"remix",
"paraglidejs",
"i18n"
],
"author": "BRIKEV (https://github.com/brikev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/BRIKEV/remix-paraglidejs/issues"
},
"homepage": "https://github.com/BRIKEV/remix-paraglidejs#readme",
"devDependencies": {
"@types/node": "^20.11.26",
"@vitest/coverage-istanbul": "^1.4.0",
"eslint": "^8.57.0",
"happy-dom": "^14.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"vitest": "^1.4.0"
},
"dependencies": {
"@inlang/paraglide-vite": "^1.2.40",
"@remix-run/react": "^2.8.1",
"@remix-run/server-runtime": "^2.8.1"
}
}