-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.13 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
{
"name": "@lucasdinonolte/vector-utils",
"version": "0.0.1",
"description": "",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"files": [
"dist/**/**",
"!**/*.test.*",
"!**/*.json",
"!**/*.tsbuildinfo",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm run clean && rollup -c",
"changeset": "changeset",
"clean": "rimraf dist",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lint": "eslint ./src",
"prepare": "npm run format:fix && npm run build && changeset version",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "Lucas Dino Nolte <hello@lucas-nolte.com>",
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@eslint/js": "^9.3.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/eslint__js": "^8.42.3",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0",
"vitest": "^1.6.0"
}
}