-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 966 Bytes
/
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
{
"name": "dstyler",
"version": "0.2.0",
"description": "",
"scripts": {
"dev": "vitest",
"test": "vitest run",
"build": "tsup ./src/index.ts",
"lint": "tsc",
"ci": "pnpm run lint && pnpm run test && pnpm run build",
"release": "pnpm run lint && pnpm run test && pnpm run build && pnpm changeset publish"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"keywords": [],
"author": "Tristan Mayo",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/jsdom": "^21.1.6",
"@types/postcss-js": "^4.0.4",
"jsdom": "^23.0.1",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vitest": "^1.0.1"
},
"dependencies": {
"postcss-js": "^4.0.1"
}
}