-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1007 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1007 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
42
43
{
"name": "@cray-com/foundation-devtools",
"version": "1.0.0",
"description": "Dense, design-neutral development tooling for website variants",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./astro": {
"types": "./dist/astro.d.ts",
"import": "./dist/FoundationDevtools.astro"
},
"./element": {
"types": "./dist/element.d.ts",
"import": "./dist/element.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"check": "tsc --noEmit",
"test": "npm run build && node --test test/*.test.mjs",
"build": "tsc && node scripts/build.mjs",
"prepare": "npm run build"
},
"peerDependencies": {
"astro": ">=5"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"astro": "^7.1.3",
"esbuild": "^0.25.12",
"typescript": "^6.0.3"
},
"license": "MIT"
}