-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 989 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 989 Bytes
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
{
"name": "@netlify/types",
"version": "2.8.0",
"description": "TypeScript definitions for the Netlify platform",
"type": "module",
"engines": {
"node": "^18.14.0 || >=20"
},
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsup-node",
"prepack": "npm run build",
"test": "npm run types && vitest run",
"test:dev": "vitest",
"test:ci": "npm run build && npm run test",
"dev": "tsup-node --watch",
"types": "tsc --noEmit",
"publint": "npx -y publint --strict"
},
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/netlify/primitives.git",
"directory": "packages/types"
},
"bugs": {
"url": "https://github.com/netlify/primitives/issues"
},
"author": "Netlify Inc.",
"devDependencies": {
"@types/node": "^18.19.110",
"tsup": "^8.0.0",
"typescript": "^5.8.3",
"vitest": "^3.0.0"
}
}