forked from microsoft/fast
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.43 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.43 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
{
"name": "@ni/fast",
"description": "NI fork of Microsoft FAST to support the NI Nimble Design System.",
"version": "1.0.0",
"author": {
"name": "National Instruments"
},
"license": "MIT",
"private": true,
"workspaces": [
"packages/utilities/fast-eslint-rules",
"packages/utilities/fast-colors",
"packages/utilities/fast-web-utilities",
"packages/web-components/fast-element",
"packages/web-components/fast-foundation",
"packages/utilities/fast-react-wrapper"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ni/fast.git"
},
"bugs": {
"url": "https://github.com/ni/fast/issues/new/choose"
},
"scripts": {
"postinstall": "playwright install --with-deps",
"build": "npm run build --workspaces --if-present",
"pack": "npm run pack --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"format": "npm run format --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"change": "beachball change",
"check": "beachball check --changehint \"Run 'npm run change' to generate a change file\"",
"sync": "beachball sync",
"invoke-publish": "beachball publish --yes --access public --message \"applying package updates [skip ci]\""
},
"devDependencies": {
"@types/node": "^22",
"beachball": "^2.24.0",
"playwright": "^1.51.1",
"prettier": "3.4.2",
"typescript": "~5.4.5"
}
}