-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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
{
"name": "css-theming",
"version": "2.0.0",
"description": "A platform for CSS theming.",
"main": "dist/umd/index.js",
"module": "dist/es/index.js",
"types": "dist/es/index.d.ts",
"scripts": {
"start": "rollup -c rollup.config.es.js -w",
"build": "rollup -c rollup.config.es.js && rollup -c rollup.config.umd.js",
"lint": "run-s lint:eslint lint:prettier",
"lint:eslint": "eslint src --ext .js,.ts --fix --ignore-path .gitignore",
"lint:prettier": "prettier src --write",
"prepack": "npm run build"
},
"keywords": [
"css",
"theme",
"theming",
"scss",
"css-variables"
],
"author": "Mohammad Rahhal",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mrahhal/css-theming"
},
"files": [
"dist",
"src/scss"
],
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-vue": "^9.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rollup": "^2.60.1",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
}
}