-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.24 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.24 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "remark-notes-plugin",
"version": "2.0.1",
"description": "A remark plugin that transforms markdown quotes into styled note elements",
"license": "MIT",
"bugs": {
"url": "https://github.com/rishichawda/remark-notes-plugin/issues"
},
"homepage": "https://rishichawda.github.io/remark-notes-plugin/",
"author": "rishichawda",
"repository": {
"url": "https://github.com/rishichawda/remark-notes-plugin.git"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"build:ts": "tsc",
"watch:ts": "tsc -w",
"build:css": "postcss styles.css -o dist/styles.css",
"watch:css": "postcss styles.css -o dist/styles.css --watch",
"build": "yarn build:ts && yarn build:css",
"watch": "yarn watch:ts & yarn watch:css",
"test": "node --loader ts-node/esm __tests__/index.ts",
"test:styles": "node --loader ts-node/esm __tests__/styles.ts",
"test:custom-prefix": "node --loader ts-node/esm __tests__/custom-prefix.ts",
"test:validation": "node --loader ts-node/esm __tests__/validation.ts",
"test:edge-cases": "node --loader ts-node/esm __tests__/edge-cases.ts",
"test:all": "yarn test && yarn test:styles && yarn test:custom-prefix && yarn test:validation && yarn test:edge-cases",
"generate:fixtures": "node --loader ts-node/esm __tests__/generate-fixtures.ts"
},
"keywords": [
"remark",
"remark-plugin",
"markdown",
"notes",
"astro"
],
"dependencies": {
"hast": "^1.0.0",
"mdast": "^3.0.0",
"unified": "^11.0.4",
"unist": "^0.0.1",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@types/node": "^20.10.5",
"autoprefixer": "^10.4.21",
"cssnano": "^7.0.6",
"postcss": "^8.5.3",
"postcss-cli": "^11.0.1",
"rehype-parse": "^9.0.1",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}