-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.58 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"packageManager": "yarn@3.2.3",
"version": "0.0.4",
"name": "@halvardm/virtual-assistant",
"description": "A virtual assistant for your website",
"type": "module",
"license": "MIT",
"author": "Halvard Mørstad",
"repository": "git@github.com:halvardssm/virtual-assistant.git",
"files": [
"dist"
],
"main": "./dist/index.umd.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "yarn clean && tsc && vite build",
"preview": "vite preview",
"prepack": "yarn build",
"clean": "rm -rf dist",
"format:fix": "prettier --write \"lib/**/*.ts\"",
"format:check": "prettier --check \"lib/**/*.ts\"",
"lint:fix": "eslint --fix",
"lint:check": "echo 'checking eslint' && eslint && echo 'eslint complete'",
"tsc:check": "echo 'checking tsc' && tsc --noEmit && echo 'tsc complete'",
"test": "jest"
},
"devDependencies": {
"@jest/globals": "^29.0.3",
"@jest/types": "^29.0.3",
"@types/node": "^18.7.18",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"eslint": "^8.23.1",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.79.0",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vite-plugin-dts": "^1.5.0"
}
}