-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 913 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 913 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
{
"name": "@typescript/ata",
"version": "0.9.8",
"license": "MIT",
"homepage": "https://github.com/microsoft/TypeScript-Website",
"repository": {
"url": "https://github.com/microsoft/TypeScript-Website.git",
"directory": "packages/ata",
"type": "git"
},
"main": "dist/index.js",
"type": "module",
"types": "src/userFacingTypes.d.ts",
"scripts": {
"build": "esbuild src/index.ts --bundle --outfile=dist/index.js --format=esm --platform=node --target=es2015 && cpy src/userFacingTypes.d.ts dist/ --rename=index.d.ts && cpy src/ ../sandbox/src/vendor/ata",
"test": "jest",
"bootstrap": "pnpm build"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"cpy-cli": "^3.1.1",
"esbuild": "^0.17.8",
"esbuild-jest": "^0.5.0",
"jest": "^29.5.0"
},
"peerDependencies": {
"typescript": "^5.9.3"
}
}