forked from BeOnAuto/auto-engineer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 783 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "@auto-engineer/design-system-importer",
"version": "0.1.0",
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"start": "tsx src/index.ts",
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint 'src/**/*.ts' --max-warnings 0 --config ../../eslint.config.js",
"type-check": "tsc --noEmit",
"format": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore",
"lint:fix": "eslint 'src/**/*.ts' --fix --config ../../eslint.config.js",
"format:fix": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore"
},
"publishConfig": {
"access": "public"
},
"dependencies": {}
}