mirror of https://github.com/jkjoy/sunpeiwen.git
61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"name": "@adobe/css-tools",
|
|
"version": "4.3.1",
|
|
"description": "CSS parser / stringifier",
|
|
"source": "src/index.ts",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.mjs",
|
|
"exports": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"types": "./dist/types.d.ts",
|
|
"type": "module",
|
|
"files": [
|
|
"dist",
|
|
"Readme.md"
|
|
],
|
|
"devDependencies": {
|
|
"@parcel/packager-ts": "2.9.3",
|
|
"@parcel/transformer-typescript-types": "2.9.3",
|
|
"@types/benchmark": "^2.1.1",
|
|
"@types/bytes": "^3.1.1",
|
|
"@types/jest": "^29.5.3",
|
|
"@types/node": "^20.4.5",
|
|
"benchmark": "^2.1.4",
|
|
"bytes": "^3.1.0",
|
|
"gts": "^5.0.0",
|
|
"jest": "^29.6.2",
|
|
"parcel": "^2.9.3",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.0.2"
|
|
},
|
|
"scripts": {
|
|
"benchmark": "node benchmark/index.mjs",
|
|
"test": "jest",
|
|
"clean": "gts clean && rm -rf ./dist",
|
|
"build": "parcel build && node ./utils/fix-type-generation.cjs",
|
|
"fix": "gts fix",
|
|
"lint": "gts lint",
|
|
"prepack": "npm run build",
|
|
"prepare": "npm run build",
|
|
"pretest": "npm run build",
|
|
"posttest": "npm run lint"
|
|
},
|
|
"author": "TJ Holowaychuk <tj@vision-media.ca>",
|
|
"contributors": [
|
|
"Jean-Philippe Zolesio <holblin@gmail.com>"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/adobe/css-tools.git"
|
|
},
|
|
"keywords": [
|
|
"css",
|
|
"parser",
|
|
"stringifier",
|
|
"stylesheet"
|
|
]
|
|
}
|