我在想那是什么意思:
"dependencies": { "@mui/styled-engine": "npm:@mui/styled-engine-sc@5.3.0", }
npm:前缀是什么?
npm:
jdgnovmf1#
https://github.com/npm/cli/commit/b7b54f2d18e2d8d65ec67c850b21ae9f01c60e7e此提交引入了对npm cli的别名
qgelzfjb2#
可能会告诉npm从哪里获取包(在本例中为npm):https://docs.npmjs.com/cli/v8/configuring-npm/package-json#dependencies如您所见,还有file:和git:。
file:
git:
b1payxdu3#
我已经多次使用这段代码:
"dependencies": { "node-sass": "npm:sass@x.y.z", }
它使npm下载sass而不是节点sass。
3条答案
按热度按时间jdgnovmf1#
https://github.com/npm/cli/commit/b7b54f2d18e2d8d65ec67c850b21ae9f01c60e7e
此提交引入了对npm cli的别名
qgelzfjb2#
可能会告诉npm从哪里获取包(在本例中为npm):https://docs.npmjs.com/cli/v8/configuring-npm/package-json#dependencies
如您所见,还有
file:
和git:
。b1payxdu3#
我已经多次使用这段代码:
它使npm下载sass而不是节点sass。