-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.42 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.42 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "themthem",
"version": "0.0.0",
"license": "MIT",
"keywords": [
"css",
"css theme",
"css variable",
"css variable declaration",
"css vars",
"css-in-js",
"design token",
"typescript",
"w3c"
],
"repository": {
"type": "git",
"url": "https://github.com/ChibiBlasphem/themthem.git"
},
"types": "./dist/index.d.ts",
"main": "./dist/themthem.umd.js",
"module": "./dist/themthem.es.js",
"files": [
"./dist",
"./interfaces.d.ts"
],
"exports": {
".": {
"import": "./dist/themthem.es.js",
"require": "./dist/themthem.umd.js"
}
},
"scripts": {
"build": "tsc --noEmit && vite build && tsc --emitDeclarationOnly && node ./scripts/typescript-replace.js",
"test": "vitest --run --passWithNoTests",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.7.1",
"replace-in-file": "^6.3.5",
"semantic-release": "^19.0.2",
"typescript": "^4.5.4",
"vite": "^2.9.9",
"vitest": "^0.17.0"
}
}