-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.67 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.67 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
{
"name": "@sysvale/foundry",
"version": "1.7.0",
"description": "A forge for composables, helpers, and front-end utilities.",
"type": "module",
"main": "./dist/foundry.cjs.js",
"module": "./dist/foundry.es.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": "./dist/foundry.es.js",
"require": "./dist/foundry.cjs.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint . --ext .ts,.tsx,.js,.vue",
"prettier:check": "prettier . --check",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sysvale/foundry.git"
},
"keywords": [],
"author": "Sysvale <contato@sysvale.com.br>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Sysvale/foundry/issues"
},
"homepage": "https://github.com/Sysvale/foundry#readme",
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"jsdom": "^26.1.0",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"vite": "^7.0.6",
"vitepress": "^1.6.3",
"vitest": "^3.2.4",
"vue": "^3.5.18"
},
"peerDependencies": {
"vue": "^3.5.0"
}
}