-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 943 Bytes
/
package.json
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
{
"name": "@primer/generated-data",
"version": "0.0.9",
"description": "A repo with generated GitHub-like data to be used in tools like Figma plugins and prototypes.",
"type": "module",
"main": "lib/index.js",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && mkdir dist && npm run build:data && npm run copy:asstes",
"clean": "rm -rf dist",
"build:data": "npx tsx scripts/generate-data.ts",
"copy:asstes": "cp -r assets dist/assets",
"type-check": "npx tsc --noEmit",
"test": "npx vitest run && npm run type-check",
"preversion": "npm run type-check && npm run test",
"version": "npm run build && git add -A",
"postversion": "git push && git push --tags && npm publish"
},
"keywords": [],
"author": "Github Inc.",
"license": "MIT",
"devDependencies": {
"@faker-js/faker": "^9.0.1",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
}
}