-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.61 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@variantjs/core",
"version": "0.0.89",
"description": "VariantJS common functions and utilities",
"types": "./dist/index.d.ts",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"sideEffects": false,
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"watch": "tsc --watch",
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src --fix",
"release": "release-it"
},
"keywords": [
"tailwindcss",
"react",
"vue",
"react-tailwind",
"vue-tailwind",
"variantjs"
],
"author": "Alfonso Bribiesca <alfonso@vexilo.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/variantjs/core"
},
"license": "MIT",
"private": false,
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.4.5",
"release-it": "^14.11.8",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4",
"vite": "^2.7.7"
},
"files": [
"dist/**/*",
"src/**/*"
],
"release-it": {
"hooks": {
"before:init": [
"yarn lint",
"yarn test"
],
"after:bump": "yarn build"
}
}
}